/**
 * ThinkSchool Public Website — Homepage Root Component
 */
function HomePage() {
  return (
    <div className="min-h-screen bg-black text-zinc-100 flex flex-col font-body selection:bg-amber-500 selection:text-black">
      <Navbar currentPath="/" />
      <main id="main-content" tabIndex="-1" className="flex-1 focus:outline-none">
        <Hero />
        <ProductShowcase />
        <RoleSolutions />
        <FeatureGrid />
        <WebMobileExperience />
        <SecurityPreview />
        <PricingSection />
        <FAQSection />
        <CTASection />
      </main>
      <Footer />
      <CookieBanner />
    </div>
  );
}

window.HomePage = HomePage;
