Files
Lovemap/app/layout.jsx
T
2024-09-03 18:18:49 +02:00

19 lines
338 B
React

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