import * as React from "react"; import Head from "next/head"; type LayoutProps = { title: string; children?: React.ReactNode; }; const Layout = ({ children, title }: LayoutProps) => { return ( <>