/* global React */ /* Second half of landing page: Menu / Beer / Events / Gallery / Info / Footer */ function MenuFood({ variant }) { const renderCol = (title, items) =>
— {title}
{items.map((it) =>
{it.n}
{it.name} {it.spicy && }
€ {it.price}
{it.desc}
)}
; return ( ); } function MenuBeer({ variant }) { return (
03 — Lineup taps

Sette spine.
Da Monaco a Dublino.

Tre Hofbräu direttamente da München, le artigianali di ECB, la Guinness servita come si deve. Sei spine fisse più due a rotazione — chiedi al banco.
{window.TAPS.map((t) =>
{String(t.n).padStart(2, "0")}
{t.origin}
{t.name}
{t.style}
{t.note}
{t.big} {t.small}
)}
{/* Cocktails strip */}
Dal bar · cocktails
{window.COCKTAILS.map((c) =>
{c.name}
{c.ing}
€ {c.price}
)}
); } function Events({ variant }) { return (
04 — Cosa succede

Eventi &
live music.

Settimana 21
maggio 2026
{window.EVENTS.map((e, i) => e.currentTarget.style.paddingLeft = "16px"} onMouseLeave={(e) => e.currentTarget.style.paddingLeft = "0"}>
{e.day}
{e.date}
{e.title}
{e.dj}
{e.hour}
)}

Vuoi suonare da noi? Siamo sempre alla ricerca di band, dj set su vinile, surf-rock, dub, reggae. Scrivici.

Booking
); } function Gallery({ variant }) { return ( ); } function Info({ variant }) { return (
05 — Quando · Dove

Vieni a
trovarci.

{/* Map */}
{/* Real Google Maps embed — stylized with CSS filters to match the warm/dark template */} {/* Warm overlay to fuse the map with the page palette */}
{/* Drop's pin marker overlay */}
DROP'S
Apri in Maps
{/* Info column */}
Indirizzo
Via Marotta 130 - Fregene (Rm)
00054 Fregene · Roma
Orari
{window.HOURS.map((h) =>
{h.d} {h.h}
)}
Contatti
Prenota un tavolo
); } function Footer({ variant }) { return ( ); } window.MenuFood = MenuFood; window.MenuBeer = MenuBeer; window.EventsSection = Events; window.GallerySection = Gallery; window.InfoSection = Info; window.FooterSection = Footer;