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> ); }