web/src/app/page.jsx

27 lines
823 B
React
Raw Normal View History

2024-01-10 11:04:28 +03:30
"use client";
import Navbar from "@comp/Navbar/page";
import Footer from "@comp/Footer/page";
import HeroSection from "@comp/LandingPage/HeroSection/page";
import SurpriseSection from "@comp/LandingPage/SurpriseSection/page";
import BetweenSexualSection from "@comp/LandingPage/BetweenSexualSection/page";
import BrandsLogoSection from "@comp/LandingPage/BrandsLogoSection/page";
import BeautySection from "@comp/LandingPage/BeautySection/page";
import HomeSection from "@comp/LandingPage/HomeSection/page";
2024-02-05 01:40:57 +03:30
export default function Page() {
2024-01-10 11:04:28 +03:30
return (
<>
<div className="bg-header">
2024-02-05 01:40:57 +03:30
<Navbar theme={0} />
2024-01-10 11:04:28 +03:30
<HeroSection />
</div>
<SurpriseSection />
<BetweenSexualSection />
<BrandsLogoSection />
<BeautySection />
<HomeSection />
<Footer />
</>
);
}