/* Autobrew marketing — page composition */
function App() {
  React.useEffect(() => { if (window.lucide) window.lucide.createIcons(); }, []);
  return (
    <React.Fragment>
      <Nav />
      <main>
        <Hero />
        <TrustStrip />
        <Problem />
        <HowItWorks />
        <Pillars />
        <Principle />
        {/* Pricing hidden until the product takes active customers. Re-enable by uncommenting. */}
        {/* <Pricing /> */}
        <CTA />
      </main>
      <Footer />
    </React.Fragment>
  );
}
ReactDOM.createRoot(document.getElementById('root')).render(<App />);
