import Head from 'next/head'; import { NextPage } from 'next'; import { Navbar } from './Navbar'; import Sidebar from './Sidebar'; interface Props { title: string; children?: React.ReactNode; } export const MainLayout:NextPage = ({ children, title} ) => { return ( <> { title }
{ children }
) }