import Head from 'next/head'; import { AdminLayout } from '../../components/AdminLayout'; const cards = [ { title: 'Menu builder', body: 'Create offerings, upload photos, and set inventory caps without leaving the page.', }, { title: 'Orders & pick tickets', body: 'Review today’s bake list, tap through stages, and open iPad-friendly pick tickets.', }, { title: 'Inventory & ingredients', body: 'Track flour, butter, and fillings with automatic depletion and restock alerts.', }, { title: 'Analytics', body: 'See weekly order trends, best sellers, and forecast upcoming bake volumes.', }, ]; export default function AdminHome() { return ( <> Full Moon Bakehouse · Admin

Built for a one-woman bakehouse: fast edits, real-time inventory, and workflows that translate beautifully to an iPad on the counter.

{cards.map((card) => (

{card.title}

{card.body}

))}

Authentication and role-aware dashboards land alongside the order board—this page is a stub until those pieces go live.

); }