next.js/examples/with-static-export/app/page.tsx
page.tsx16 lines260 B
import Link from "next/link";

const Home = () => {
  return (
    <div>
      <h1>Home</h1>
      <p>Hello World! This is the Home page</p>
      <p>
        Visit the <Link href="/about">About</Link> page.
      </p>
    </div>
  );
};

export default Home;
Quest for Codev2.0.0
/
SIGN IN