SFS/app/page.tsx

24 lines
674 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"
import LadderClimb from "@/components/ladderclimber"
export default function Home() {
return (
<>
<main className="w-full">
<MainHero />
<HeroSection /> {/* This is the 'Why SFS' section */}
<OurOfferings />
<Testimonials />
<TrustedBy />
<Footer />
</main>
</>
)
}