import Head from "next/head"; import { ReactNode } from "react"; type DefaultLayoutProps = { children: ReactNode }; import { ToastContainer } from "react-toastify"; import "react-toastify/dist/ReactToastify.css"; export const DefaultLayout = ({ children }: DefaultLayoutProps) => { return ( <>