✨ Created navbar
This commit is contained in:
+5
-1
@@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user