// mount
const App = () => (
  <>
    <Hero/>
    <Manifesto/>
    <About/>
    <Process/>
    <Awards/>
    <Contact/>
    <Footer/>
  </>
);

ReactDOM.createRoot(document.getElementById('app')).render(<App/>);
