Spaces:
Running
Running
File size: 332 Bytes
13ae717 |
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="min-h-screen bg-black z-1 relative">
<div className="background__noisy" />
<Navigation />
{children}
</div>
);
}
|