function App() {
  return (
    <>
      <StorySection/>
      <LogoSection/>
      <ColorSection/>
      <TypeSection/>
      <VoiceSection/>
      <ApplicationsSection/>
      <RulesSection/>
    </>
  );
}

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