16 lines
351 B
TypeScript
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>
|
|
</>
|
|
);
|
|
};
|