Created navbar

This commit is contained in:
2024-09-03 19:01:03 +02:00
parent a4d77952de
commit 1fde514aaf
9 changed files with 218 additions and 2 deletions
+5 -1
View File
@@ -1,5 +1,6 @@
import { Inter } from 'next/font/google';
import './globals.scss';
import Navbar from '@/components/Navbar/Navbar';
const inter = Inter({ subsets: ['latin'] });
@@ -10,7 +11,10 @@ export const metadata = {
const RootLayout = ({ children }) => {
return (
<html lang='fr'>
<body className={inter.className}>{children}</body>
<body className={inter.className}>
{children}
<Navbar />
</body>
</html>
);
};