// App — Bram Marcus one-pager
function App() {
  return (
    <div data-screen-label="01 Bram Marcus — One Pager">
      <HeroSection />
      <IntroSection />
      <BrandsSection />
      <ServicesSection />
      <AboutSection />
      <PortfolioSection />
      <ContactSection withFooter={false} />
      <TestimonialsSection />
      <Footer />
    </div>
  );
}

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