// wf/detail.jsx — Three directions for an individual address detail page const ADDRESS = { name: 'Tuba Club', kind: 'Plage · Cuisine de la mer', area: 'Les Goudes · 13008', dist: '12 min en voiture · 4 km', rating: '4.6', reviews: '812 avis Google', phone: '+33 4 91 …', price: '€€€', hours: 'Tous les jours · 12h–22h', }; // ─── A · Photo arche + bloc d'infos centré ────────────────────────────── const DetailA = () => (
RESTAURANTS
{ADDRESS.kind}
{ADDRESS.name}
{ADDRESS.area}
{ADDRESS.rating}
Google
12'
Voiture
{ADDRESS.price}
Prix
« Pourquoi j'aime cet endroit »
Itinéraire Google Maps
); // ─── B · Full-bleed photo + sticky info ───────────────────────────────── const DetailB = () => ( {/* hero photo full-bleed */}
{/* top bar over photo */}
{/* title on photo */}
★ 4.6 · 812 avis
Tuba Club
Plage · cuisine de la mer
{/* lower content offset down */}
« Ma cantine de bord de mer »
{[ ['pin', 'Les Goudes — 13008', 'Voir sur la carte'], ['clock','Tous les jours · 12h–22h', 'Réservation conseillée'], ['phone','+33 4 91 …', 'Appeler'], ['globe','tubaclub.fr', 'Site web'], ].map(([k,a,b],i) => (
{a}
{b}
))}
{/* sticky CTA */}
Y aller · Google Maps
); // ─── C · Éditorial deux colonnes ──────────────────────────────────────── const DetailC = () => (
03 / 15
Tuba Club.
Plage · Cuisine de la mer
{/* two-col grid */}
4.6 · 12 min · €€€ · Les Goudes
Itinéraire Appeler Site web
); Object.assign(window, { DetailA, DetailB, DetailC });