first commit
This commit is contained in:
Executable
+36
@@ -0,0 +1,36 @@
|
||||
import React from 'react';
|
||||
import TopHeader from '../components/_App/TopHeader';
|
||||
import Navbar from '../components/_App/Navbar';
|
||||
import PageBanner from '../components/Common/PageBanner';
|
||||
import ContactInfo from '../components/Contact/ContactInfo';
|
||||
import ContactForm from '../components/Contact/ContactForm';
|
||||
import GoogleMap from '../components/Contact/GoogleMap';
|
||||
import Footer from '../components/_App/Footer';
|
||||
|
||||
const Contact = () => {
|
||||
return (
|
||||
<>
|
||||
<TopHeader />
|
||||
|
||||
<Navbar />
|
||||
|
||||
<PageBanner
|
||||
pageTitle="Contact Us"
|
||||
homePageUrl="/"
|
||||
homePageText="Home"
|
||||
activePageText="Contact Us"
|
||||
bgImage="page-title-one"
|
||||
/>
|
||||
|
||||
<ContactInfo />
|
||||
|
||||
<ContactForm />
|
||||
|
||||
<GoogleMap />
|
||||
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default Contact;
|
||||
Reference in New Issue
Block a user