import Head from "next/head"; export default function Home() { return ( <> <Head> <title>Home</title> </Head> <div> <h1>This is the Home page</h1> </div> </> ); }