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

34 lines
1.1 KiB

  1. import React from 'react';
  2. import Navbar from "@/components/_App/Navbar";
  3. import MainBanner from '@/components/PCRepair/MainBanner';
  4. import PartnerStyleTwo from '@/components/Common/PartnerStyleTwo';
  5. import AboutUsContent from '@/components/PCRepair/AboutUsContent';
  6. import Services from '@/components/PCRepair/Services';
  7. import CTA from '@/components/PCRepair/CTA';
  8. import FunFactsArea from '@/components/Common/FunFactsArea';
  9. import Team from '@/components/PCRepair/Team';
  10. import Feedback from '@/components/Common/Feedback';
  11. import WhyChoose from '@/components/PCRepair/WhyChoose';
  12. import BlogPost from '@/components/Common/BlogPost';
  13. import Footer from "@/components/_App/Footer";
  14. const PCRepair = () => {
  15. return (
  16. <>
  17. <Navbar />
  18. <MainBanner />
  19. <PartnerStyleTwo />
  20. <AboutUsContent />
  21. <Services />
  22. <CTA />
  23. <FunFactsArea />
  24. <Team />
  25. <Feedback />
  26. <WhyChoose />
  27. <BlogPost />
  28. <Footer />
  29. </>
  30. )
  31. }
  32. export default PCRepair;