Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 строки
593 B

  1. import React from 'react';
  2. import Navbar from "@/components/_App/NavbarHome";
  3. import MainBanner from "@/components/Home/MainBanner";
  4. import Nearby from "@/components/Home/Nearby";
  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. <Facilities />
  15. <Nearby />
  16. <Footer />
  17. </>
  18. )
  19. }
  20. export default Index;