next.js/examples/with-segment-analytics/app/contact/page.tsx
page.tsx15 lines219 B
import Form from "@/components/form";

export const metadata = {
  title: "Contact",
};

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