import Link from 'next/link' export default function Page() { return ( <> <h1>Home Page</h1> <Link href="/about"> About <strong>Additional Children</strong> </Link> </> ) }