SFS/app/page.tsx
2025-12-19 12:47:57 +05:30

23 lines
621 B
TypeScript

import Navbar from "@/components/navbar"
import MainHero from "@/components/main-hero"
import HeroSection from "@/components/hero-section"
import Testimonials from "@/components/testimonials"
import OurOfferings from "@/components/our-offerings"
import TrustedBy from "@/components/trusted-by"
import Footer from "@/components/footer"
export default function Home() {
return (
<>
<main className="w-full">
<MainHero />
<HeroSection /> {/* This is the 'Why SFS' section */}
<OurOfferings />
<Testimonials />
<TrustedBy />
<Footer />
</main>
</>
)
}