/* The rendered "Sweet Crumb" bakery site shown inside the Horizons preview pane. This is the customer's site — its own warm brand, NOT hPanel chrome. */ const BAKE = { ink: "#3A2A1E", inkSoft: "#6B5544", cream: "#FBF5EC", card: "#FFFFFF", terra: "#C2622E", terraDeep: "#A24D1F", gold: "#E0A84E", line: "#EBDFCD", serif: "'Playfair Display', Georgia, serif", }; function Bake({ children, c = BAKE.ink, w, fs, lh, ls, mt, weight, serif, align, style }) { return (
{children}
); } /* a warm "photo" tile — stand-in for real bakery photography in the preview */ function Photo({ from, to, label, h = 180, dark }) { return (
{label}
); } function BakerySite() { return (
{/* nav */}
S Sweet Crumb
MenuOur storyVisit Order online
{/* hero */}
Baked fresh every morning
Warm bread, honest ingredients. A small neighbourhood bakery in Lisbon. We mill our own flour, ferment slow, and pull everything from the oven by 7am.
See today's bakes Reserve a loaf
{/* signature bakes */}
Signature bakes View full menu →
{[ { n: "Sourdough miche", p: "€6.50", f: "#F0C879", t: "#D08A2E", d: "48-hour rye levain" }, { n: "Almond croissant", p: "€3.80", f: "#E9B97E", t: "#B96A2C", d: "Double-baked, toasted" }, { n: "Cardamom bun", p: "€3.20", f: "#E8A463", t: "#9C4A1C", d: "Hand-knotted, spiced" }, ].map((b) => (
{b.n} {b.p}
{b.d}
))}
{/* story strip */}
From a home oven to the corner of Rua Verde. Sweet Crumb started as a weekend stall. Today we bake a few hundred loaves a day — still by hand, still the same starter we named Beatriz in 2019.
{[["7am", "Out of the oven"], ["6", "Days a week"], ["100%", "Stone-milled flour"]].map(([a, b]) => (
{a} {b}
))}
{/* order CTA */}
Order ahead, skip the queue. Reserve your loaf the night before and collect it warm between 7 and 11am.
Start an order
{/* footer */}
Sweet Crumb Rua Verde 14, Lisboa · 7–14h, Tue–Sun
); } window.BakerySite = BakerySite;