๐Ÿ“ฆ 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 Page() {
  return (
    <div>
      <h1 id="error-nav-home">Error Nav Home</h1>
      <Link href="/nextjs-compat/error-nav/trigger-error" id="link-to-error">Go to Error</Link>
      <Link href="/nextjs-compat/error-nav/trigger-notfound" id="link-to-notfound">Go to Not Found</Link>
      <Link href="/nextjs-compat/nav-redirect-result" id="link-to-result">Go to Result</Link>
    </div>
  );
}