๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ about.tsx ยท 12 lines
1
2
3
4
5
6
7
8
9
10
11
12import Link from "next/link";

export default function About() {
  return (
    <>
      <h1>About</h1>
      <p>This is the about page running on Cloudflare Workers.</p>
      <Link href="/">Home</Link>
    </>
  );
}