Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

21 rinda
485 B

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