Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

34 rader
1.0 KiB

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