23 lines
411 B
React
23 lines
411 B
React
import { Inter } from 'next/font/google';
|
|
import './globals.scss';
|
|
import Navbar from '@/components/Navbar/Navbar';
|
|
|
|
const inter = Inter({ subsets: ['latin'] });
|
|
|
|
export const metadata = {
|
|
title: 'Lovemap ❤️',
|
|
};
|
|
|
|
const RootLayout = ({ children }) => {
|
|
return (
|
|
<html lang='fr'>
|
|
<body className={inter.className}>
|
|
{children}
|
|
<Navbar />
|
|
</body>
|
|
</html>
|
|
);
|
|
};
|
|
|
|
export default RootLayout;
|