diff --git a/app/contact/page.js b/app/contact/page.js index d2f425d..0fe5dab 100644 --- a/app/contact/page.js +++ b/app/contact/page.js @@ -1,83 +1,13 @@ "use client"; -import { Card, CardContent } from "../../@/components/ui/card"; -import { Input } from "../../@/components/ui/input"; -import { Label } from "../../@/components/ui/label"; -import { Textarea } from "../../@/components/ui/textarea"; -import { Button } from "../../@/components/ui/button"; - -const contactdetails = [ - { - title: "Email", - content: "contact@sanityesports.live", - }, - { - title: "Phone", - content: "+1 (800) 123 XX21", - }, - { - title: "Support", - content: "support@sanityesports.live", - }, -]; +import ContactLeftComp from "../../components/Contatct/Contact-left"; +import ContactRightComp from "../../components/Contatct/Contact-right"; export default function ContactPage() { return ( -
-
-
-

- Contact us -

- -
- We are always looking for ways to improve our products and services. - Contact us and let us know how we can help you. -
-
- -
- {contactdetails.map((item, idx) => ( -
-

{item.title}

-

{item.content}

-
- ))} -
-
- -
- - -
-
- - - -
- -
- - - -
- -
- - -