diff --git a/public/index.html b/public/index.html deleted file mode 100644 index 1c29b8c..0000000 --- a/public/index.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - TurboBouffe - - - - -
- - diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 226384d..81aa42e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,32 @@ -import StoreProvider from "@/store" +import StoreProvider from '@/store'; +import React from 'react'; +import { Flip, ToastContainer } from 'react-toastify'; +import '/public/fontawesome/css/all.min.css' export const metadata = { - title: 'Next.js', - description: 'Generated by Next.js', -} + charset: 'utf-8', + title: 'TurboBouffe', + description: "Site de gestion de la bouffe de l'UA", + icons: { + icon: '/favicon.ico', + apple: '/logo192.png' + }, + themeColor: '#fb560c', + manifest: '/manifest.json', + viewport: { + width: 'device-width', + initialScale: 1, + } +}; -export default function RootLayout({ - children, -}: { - children: React.ReactNode -}) { +export default function RootLayout({ children }: { children: React.ReactNode }) { return ( - - {children} + + + + {children} + + - ) + ); }