Import repositories from gitlab

This commit is contained in:
Julien Aldon
2026-01-19 11:43:59 +01:00
commit 68b7405c52
131 changed files with 17192 additions and 0 deletions

28
next/app/layout.js Normal file
View File

@@ -0,0 +1,28 @@
import './globals.css'
import Header from '@/components/header'
import Footer from '@/components/footer'
export const dynqmic = 'force-dynamic'
export const metadata = {
generator: 'Next.js',
applicationName: 'Le Fefan',
keywords: ['Fefan', 'Festival', 'Fanfare', 'Cuivres', 'Villeurbanne', 'Evenement', 'Musique'],
authors: [{ name: 'Girasol' }],
creator: 'Girasol',
}
export default function RootLayout({ children }) {
return (
<html lang="fr">
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Krub:wght@500;700&family=Shadows+Into+Light&display=swap" />
</head>
<body>
<Header />
{children}
<Footer />
</body>
</html>
)
}