Files
whispering-tree/app/page.tsx

35 lines
866 B
TypeScript
Raw Normal View History

2025-11-10 17:10:34 +05:30
"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";
2025-11-01 12:32:58 +05:30
export default function Home() {
return (
2025-11-10 17:10:34 +05:30
<>
<div className="flex flex-col gap-5">
{/* <Loader /> */}
<Hero />
<SocialProff />
<About />
<Benefit />
<HowWork />
<ProductPreview />
<CaseStudy />
<Testimonial />
<FAQ />
<CTA />
<Footer />
</div>
</>
2025-11-01 12:32:58 +05:30
);
}