feat: add footer with copyright and dev.pivoine.art link

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-14 21:44:58 +02:00
parent 1c73baf894
commit ae46cbc44e
+7
View File
@@ -28,6 +28,13 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<AppApolloProvider>
<Nav />
<main className="pt-[60px] min-h-screen">{children}</main>
<footer className="border-t mt-8 px-7 py-6 flex flex-col sm:flex-row items-center justify-between gap-2 text-[11px] text-[#1a3a22]" style={{ borderColor: 'rgba(34,197,94,0.08)' }}>
<span>© {new Date().getFullYear()} World Cup Statistics. Data via openfootball.</span>
<a href="https://dev.pivoine.art" target="_blank" rel="noopener noreferrer"
className="text-[#2a5c35] hover:text-[#22c55e] transition-colors">
dev.pivoine.art
</a>
</footer>
</AppApolloProvider>
</body>
</html>