// 35.style — full composition

const App = () => (
  <>
    <NavBar />
    <Hero />
    <BrandStory />
    <Positioning />
    <Services />
    <NowSection />
    <WorkSection />
    <Values />
    <Tone />
    <Contact />
    <Footer />
  </>
);

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