🐛 Fixed login page & delete forgot + register page

This commit is contained in:
2024-09-13 19:55:58 +02:00
parent 8865ba34ee
commit 6e72c029e8
9 changed files with 64 additions and 211 deletions
+2 -3
View File
@@ -1,6 +1,6 @@
import { Inter } from 'next/font/google';
import Provider from './provider';
import './globals.scss';
import Navbar from '@/components/Navbar/Navbar';
const inter = Inter({ subsets: ['latin'] });
@@ -12,8 +12,7 @@ const RootLayout = ({ children }) => {
return (
<html lang='fr'>
<body className={inter.className}>
{children}
<Navbar />
<Provider>{children}</Provider>
</body>
</html>
);