Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

23 wiersze
962 B

  1. import React from 'react';
  2. import Navbar from "@/components/_App/NavbarHome";
  3. import MainBanner from "@/components/Home/MainBanner";
  4. import Pricing from "@/components/Home/Pricing";
  5. import Facilities from "@/components/Home/Facilities";
  6. import PromoCarousel from "@/components/Home/PromoCarousel";
  7. import Footer from "@/components/_App/Footer";
  8. const Index = () => {
  9. return (
  10. <>
  11. <Navbar />
  12. {/* <PromoCarousel /> */}
  13. <MainBanner />
  14. <Pricing />
  15. <Facilities />
  16. <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d4877.20160768357!2d104.7667749109232!3d-2.9676806176934054!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2e3b772d29451467%3A0x283d2cd7399d18dd!2sCatania%20BANGAU!5e0!3m2!1sid!2sid!4v1637288512772!5m2!1sid!2sid" width="100%" height="450" allowFullScreen="" loading="lazy"></iframe>
  17. <Footer />
  18. </>
  19. )
  20. }
  21. export default Index;