1 2 3 4 5 6 7 8 9 10 11 12import Link from "next/link"; export default function AboutPage() { return ( <main> <h1>About</h1> <p>This is the about page.</p> <Link href="/">Back to Home</Link> </main> ); }
1 2 3 4 5 6 7 8 9 10 11 12
import Link from "next/link"; export default function AboutPage() { return ( <main> <h1>About</h1> <p>This is the about page.</p> <Link href="/">Back to Home</Link> </main> ); }