feat: add privacy policy page and footer

This commit is contained in:
jessy-david-dev
2026-04-10 19:21:52 +02:00
parent 8d80d4278a
commit cd5f2bdf3f
2 changed files with 100 additions and 1 deletions
+8 -1
View File
@@ -29,7 +29,14 @@ export default function RootLayout({
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col" style={{ background: "#0f0f0f", color: "#f0f0f0" }}>
<Providers>{children}</Providers>
<Providers>
<main className="flex-1">{children}</main>
<footer className="border-t border-[#2e2e2e] py-4 px-4 flex items-center justify-center gap-4 text-xs text-[#555]">
<span>© {new Date().getFullYear()} WikiRush</span>
<span>·</span>
<a href="/privacy" className="hover:text-[#888] transition-colors">Politique de confidentialité</a>
</footer>
</Providers>
</body>
</html>
);