/* This is your Layout. It will wrap your content on every page of the website. You'll have: * The NavBar * The Content, generally a component * The Footer You can change it as you want with new components. You also have the head component containing all the favicon for different platforms. The images are in the public folder. */ import 'react-toastify/dist/ReactToastify.css'; import Footer from './Footer'; import Head from 'next/head'; import Nav from './Nav'; import { ToastContainer } from 'react-toastify'; import { useAuth } from 'utils/AuthContext'; type LayoutProps = { children: JSX.Element; }; const Layout = ({ children }: LayoutProps): JSX.Element => { const { user, signOut } = useAuth(); return (