
import ContactMain from "@/components/contact/ContactMain";
import Head from "next/head";

const Contact = () => {
  return (
    <>
        <Head>
          <title>JAP - Contact Us</title>
        </Head>
        <main>
          <ContactMain/>
        </main>
    </>
  );
}

export default Contact