Spaces:
Sleeping
Sleeping
| import type { ReactNode } from "react"; | |
| type PageShellProps = { | |
| children: ReactNode; | |
| className?: string; | |
| }; | |
| export function PageShell({ children, className = "" }: PageShellProps) { | |
| return ( | |
| <main | |
| className={[ | |
| "max-w-4xl mx-auto my-8 bg-white shadow-sm ring-1 ring-gray-200 rounded-xl p-6 md:p-8", | |
| className, | |
| ].join(" ")} | |
| > | |
| {children} | |
| </main> | |
| ); | |
| } | |