// Home.jsx — assembles all home sections

function HomePage() {
  return (
    <div>
      <window.HeroSection />
      <window.TrustBar />
      <window.CategoriesSection />
      <window.FeaturedSection />
      <window.WhySection />
      <window.ParallaxSection />
      <window.TimelineSection />
      <window.CTABand />
    </div>
  );
}

Object.assign(window, { HomePage });
