// App — composes the full homepage. Direction A (Instrument Serif) is locked,
// so no live tweak controls on production.

function App() {
  return (
    <>
      <SiteHeader />
      <main>
        <Hero />
        <Mission />
        <Coffee />
        <Eat />
        <Market />
        <Work />
        <Community />
        <ListBlock />
        <Visit />
        <SocialStrip />
      </main>
      <SiteFooter />
      <a href="https://www.clover.com/online-ordering/everyday-works-dallas" target="_blank" rel="noopener" className="sticky-order">Order pickup →</a>
    </>
  );
}

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