2023-04-14 14:02:42 +02:00

16 lines
351 B
TypeScript

import Head from "next/head";
import { ReactNode } from "react";
type DefaultLayoutProps = { children: ReactNode };
export const DefaultLayout = ({ children }: DefaultLayoutProps) => {
return (
<>
<Head>
<title>LECoffre</title>
{/* <link rel="shortcut icon" href="/favicon.svg" /> */}
</Head>
<main>{children}</main>
</>
);
};