next.js/examples/with-static-export/app/about/page.tsx
page.tsx13 lines187 B
import Link from "next/link";

export default function About() {
  return (
    <>
      <h1>About</h1>
      <div>
        Back to <Link href="/">Home</Link>
      </div>
    </>
  );
}
Quest for Codev2.0.0
/
SIGN IN