web/src/app/page.jsx

27 lines
823 B
JavaScript

"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";
export default function Page() {
return (
<>
<div className="bg-header">
<Navbar theme={0} />
<HeroSection />
</div>
<SurpriseSection />
<BetweenSexualSection />
<BrandsLogoSection />
<BeautySection />
<HomeSection />
<Footer />
</>
);
}