import Head from "next/head"; import { ReactNode } from "react"; type DefaultLayoutProps = { children: ReactNode }; export const DefaultLayout = ({ children }: DefaultLayoutProps) => { return ( <> LECoffre {/* */}
{children}
); };