// App shell — composes the homepage and mounts Tweaks.

function App() {
  return (
    <>
      <Nav active="home" />
      <main>
        <Hero />
        <LiveOps />
        <Services />
        <Discovery />
        <Compared />
        <StudioShelf />
        <VoiceDemo />
        <Savings />
        <Process />
        <Closing />
      </main>
      <Footer />
      <Tweaks />
    </>
  );
}

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