// ===================== APP =====================

function App() {
  return (
    <>
      <Nav />
      <HeroSection />
      <TrustSection />
      <PainSection />
      <AboutSection />
      <TimelineSection />
      <LecturesSection />
      <WhySection />
      <SalesOfficeSection />
      <ContentSection />
      <AudienceSection />
      <CasesSection />
      <GallerySection />
      <CTASection />
      <FooterSection />
    </>
  );
}

const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);
