๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ page.tsx ยท 12 lines
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>
  );
}