next.js/examples/with-segment-analytics-pages-router/pages/contact.tsx
contact.tsx17 lines280 B
import Head from "next/head";
import Form from "@/components/form";

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