You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
932 B

  1. import React from 'react';
  2. import Navbar from "@/components/_App/NavbarHome";
  3. import Footer from "@/components/_App/Footer";
  4. import PageBanner from '@/components/Common/PageBanner';
  5. import ContactInfo from '@/components/ContactUs/ContactUs';
  6. import ContactForm from '@/components/ContactUs/ContactForm';
  7. const Contact = () => {
  8. return (
  9. <>
  10. <Navbar />
  11. <PageBanner pageTitle="Contact Us" />
  12. <ContactInfo />
  13. <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d4877.20160768357!2d104.7667749109232!3d-2.9676806176934054!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2e3b772d29451467%3A0x283d2cd7399d18dd!2sCatania%20BANGAU!5e0!3m2!1sid!2sid!4v1637288512772!5m2!1sid!2sid" width="100%" height="450" allowFullScreen="" loading="lazy"></iframe>
  14. <ContactForm />
  15. <Footer />
  16. </>
  17. )
  18. }
  19. export default Contact;