/* App mount */

function App() {
  return (
    <div data-screen-label="Landing — DATA DOGS" className="bg-black min-h-screen">
      <Hero />
      <About />
      <Features />
      <Manifesto />
      <Services />
      <Knowledge />
      <Footer />
    </div>
  );
}

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