import Shell from "@/components/shell";

export default function ShellLayout({children}: Readonly<{ children: React.ReactNode; }>) {
    return <Shell>{children}</Shell>;
}
