您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

21 行
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;