/* Swift Labs — app root */
function App() {
  useReveal();
  return (
    <React.Fragment>
      <Nav />
      <Hero />
      <Marquee />
      <Products />
      <Approach />
      <About />
      <Contact />
      <Footer />
    </React.Fragment>
  );
}
ReactDOM.createRoot(document.getElementById('root')).render(<App />);
