// App entry — Gaussia
function App() {
  useReveal();
  return (
    <>
      <div className="grain"></div>
      <Nav />
      <Hero />
      <ClientLogos />
      <Services />
      <Cases />
      <Method />
      <Pricing />
      <FAQ />
      <CTA />
      <Footer />
      <ChatBot />
    </>
  );
}

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