deepsite / app /(public) /layout.tsx
enzostvs's picture
enzostvs HF Staff
initial
c10f8f8
raw
history blame
362 Bytes
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>
);
}