feat: add privacy policy page and footer
This commit is contained in:
+8
-1
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user