Spaces:
Running
Running
File size: 362 Bytes
c10f8f8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import Navigation from "@/components/public/navigation";
export default async function PublicLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<div className="h-screen bg-neutral-950 z-1 relative overflow-auto scroll-smooth">
<div className="background__noisy" />
<Navigation />
{children}
</div>
);
}
|