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

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