Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- import React from 'react';
- import Navbar from "@/components/_App/Navbar";
- import Footer from "@/components/_App/Footer";
- import PageBanner from '@/components/Common/PageBanner';
- import ContactInfo from '@/components/Contact/ContactInfo';
- import GoogleMap from '@/components/Contact/GoogleMap';
- import ContactForm from '@/components/Contact/ContactForm';
-
- const Contact = () => {
- return (
- <>
- <Navbar />
-
- <PageBanner pageTitle="Contact Us" />
-
- <ContactInfo />
-
- <GoogleMap />
-
- <ContactForm />
-
- <Footer />
- </>
- )
- }
-
- export default Contact;
|