Add Container and Prose components

This commit is contained in:
James Blair 2026-05-08 18:53:18 +12:00
parent c9ba6a6cc5
commit 80056b3728
Signed by: james
SSH key fingerprint: SHA256:hsDR3ENI2ZMgh+CNb+0PrFsj29DI007R+BMKUVGi6zQ
3 changed files with 21 additions and 5 deletions

7
components/prose.tsx Normal file
View file

@ -0,0 +1,7 @@
interface ProseProps {
children: React.ReactNode;
}
export function Prose({ children }: ProseProps) {
return <div className="prose prose-neutral max-w-none">{children}</div>;
}