/* eslint-disable */
function App() {
  return (
    <div className="shell">
      <ScrollBar />
      <Nav />
      <Hero />
      <TrustStrip />
      <StatBand />
      <Capabilities />
      <QuoteBand />
      <HowWeWork />
      <MarqueeBand />
      <Outcomes />
      <MissionControlBand />
      <Bento />
      <Governance />
      <Founder />
      <Scorecard />
      <Industries />
      <Workshops />
      <Testimonials />
      <FAQ />
      <Resources />
      <Contact />
      <Footer />
    </div>
  );
}

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