25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
642 B

  1. import React from 'react';
  2. import Navbar from "@/components/_App/Navbar";
  3. import Footer from "@/components/_App/Footer";
  4. import PageBanner from '@/components/Common/PageBanner';
  5. import ContactInfo from '@/components/Contact/ContactInfo';
  6. import GoogleMap from '@/components/Contact/GoogleMap';
  7. import ContactForm from '@/components/Contact/ContactForm';
  8. const Contact = () => {
  9. return (
  10. <>
  11. <Navbar />
  12. <PageBanner pageTitle="Contact Us" />
  13. <ContactInfo />
  14. <GoogleMap />
  15. <ContactForm />
  16. <Footer />
  17. </>
  18. )
  19. }
  20. export default Contact;