stable state

This commit is contained in:
achraf
2026-04-01 00:41:31 +02:00
parent a4ee12732d
commit 8e62a0fa92
16 changed files with 779 additions and 565 deletions

View File

@@ -37,7 +37,19 @@ export default function RootLayout({
>
<body className="min-h-full flex flex-col antialiased" suppressHydrationWarning>
<GridCanvas />
{children}
{/* Noise texture — real DOM element so pointer-events:none is reliable on Android touch */}
<div
aria-hidden="true"
style={{
position: "fixed",
inset: 0,
backgroundImage: "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E\")",
pointerEvents: "none",
zIndex: 1,
opacity: 0.35,
}}
/>
{children}
</body>
</html>
);