/* global React, ReactDOM, useReveal, TopNav, Footer, PageHero, HoleBand, BusinessCore, BusinessInfra, BusinessFlow, BusinessProducts, BusinessCTA, LangProvider, useT */

function BusinessApp() {
  useReveal();
  const t = useT();
  return (
    <>
      <TopNav active="business" />
      <main>
        <PageHero
          title={t("business_pagehero.title")}
        />
        <BusinessCore />
        <HoleBand />
        <BusinessInfra />
        <BusinessFlow />
        <BusinessProducts />
        <BusinessCTA />
      </main>
      <Footer />
    </>
  );
}

ReactDOM.createRoot(document.getElementById("root")).render(
  <LangProvider><BusinessApp /></LangProvider>
);
