Upgrade design & moved backend here & login and settings work with api

This commit is contained in:
2024-09-29 18:04:41 +02:00
parent 42d3212624
commit f2d1eb4289
43 changed files with 1881 additions and 359 deletions
+35
View File
@@ -0,0 +1,35 @@
// ---------------------------------------------------------------------------------------------------------------------
//! Imports
// ---------------------------------------------------------------------------------------------------------------------
// ------------------------------------------------------ Next ---------------------------------------------------------
import { Metadata } from 'next';
// ---------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------- Components ------------------------------------------------------
import Provider from './provider';
// ---------------------------------------------------------------------------------------------------------------------
// ------------------------------------------------- Assets & Styles ---------------------------------------------------
import { Inter } from 'next/font/google';
import './globals.scss';
// ---------------------------------------------------------------------------------------------------------------------
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'Lovemap ❤️',
robots: 'none',
};
const RootLayout = ({ children }) => {
return (
<html lang='fr'>
<body className={inter.className}>
<Provider>{children}</Provider>
</body>
</html>
);
};
export default RootLayout;