next.js/examples/with-segment-analytics-pages-router/pages/about.tsx
about.tsx15 lines219 B
import Head from "next/head";

export default function About() {
  return (
    <>
      <Head>
        <title>About</title>
      </Head>
      <div>
        <h1>This is the About page</h1>
      </div>
    </>
  );
}
Quest for Codev2.0.0
/
SIGN IN