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.
|
- import React from 'react';
- import Navbar from "@/components/_App/NavbarHome";
- import MainBanner from "@/components/Home/MainBanner";
- import Pricing from "@/components/Home/Pricing";
- import Facilities from "@/components/Home/Facilities";
- import PromoCarousel from "@/components/Home/PromoCarousel";
- import Footer from "@/components/_App/Footer";
-
- const Index = () => {
- return (
- <>
- <Navbar />
- {/* <PromoCarousel /> */}
- <MainBanner />
- <Pricing />
- <Facilities />
- <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>
- <Footer />
- </>
- )
- }
-
- export default Index;
|