import type { ReactNode } from "react"; type PageShellProps = { children: ReactNode; className?: string; }; export function PageShell({ children, className = "" }: PageShellProps) { return (
{children}
); }