35 lines
866 B
TypeScript
35 lines
866 B
TypeScript
"use client";
|
|
import Footer from "@/components/shared/Footer";
|
|
import FAQ from "@/sections/FAQ";
|
|
import About from "@/sections/About";
|
|
import Benefit from "@/sections/Benefit";
|
|
import CaseStudy from "@/sections/CaseStudy";
|
|
import CTA from "@/sections/CTA";
|
|
import Hero from "@/sections/Hero";
|
|
import HowWork from "@/sections/HowWork";
|
|
import ProductPreview from "@/sections/ProductPreview";
|
|
import SocialProff from "@/sections/SocialProff";
|
|
import Testimonial from "@/sections/Testimonial";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<div className="flex flex-col gap-5">
|
|
{/* <Loader /> */}
|
|
<Hero />
|
|
|
|
<SocialProff />
|
|
<About />
|
|
<Benefit />
|
|
<HowWork />
|
|
<ProductPreview />
|
|
<CaseStudy />
|
|
<Testimonial />
|
|
<FAQ />
|
|
<CTA />
|
|
<Footer />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|