import { Hero } from "@/components/sections/Hero";
import { Integration } from "@/components/sections/Integration";
import { DivisionsShowcase } from "@/components/sections/DivisionsShowcase";
import { ScaleSection } from "@/components/sections/ScaleSection";
import { HeritageTeaser } from "@/components/sections/HeritageTeaser";
import { CertificationBar } from "@/components/sections/CertificationBar";
import { GlobalReach } from "@/components/sections/GlobalReach";
import { ContactCta } from "@/components/sections/ContactCta";

export default function HomePage() {
  return (
    <>
      <Hero />
      <Integration />
      <DivisionsShowcase />
      <ScaleSection />
      <HeritageTeaser />
      <CertificationBar />
      <GlobalReach />
      <ContactCta />
    </>
  );
}
