Import repositories from gitlab
This commit is contained in:
28
next/app/layout.js
Normal file
28
next/app/layout.js
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user