/* global React */ const CASES = [ { id: "baumaniere", img: "assets/photo-beaumaniere-1.jpg", cat: "Hôtellerie · 3★", title: "Baumanière", loc: "Les Baux-de-Provence", year: "2025" }, { id: "phebus", img: "assets/photo-phebus-1.jpg", cat: "Restauration · 1★", title: "Le Phébus & Spa", loc: "Joucas · 84", year: "2024" }, { id: "sevin", img: "assets/photo-sevin.jpg", cat: "Restauration · 1★", title: "Guilhem Sevin", loc: "Avignon · 84", year: "2024" }, { id: "phebus2", img: "assets/photo-phebus-3.jpg", cat: "Hôtellerie", title: "Domaine des Tilleuls", loc: "Vaucluse", year: "2024" }, { id: "santacruz", img: "assets/photo-santacruz.jpg", cat: "Événementiel", title: "Santa Cruz · Univalle", loc: "Colombie", year: "2024" }, { id: "aerial", img: "assets/photo-aerial-DJI.jpg", cat: "Aérien · DJI", title: "Repérage drone", loc: "Lubéron", year: "2024" }, ]; function CaseStudyGrid({ onOpen }) { return (
Réalisations

Sélection
de maisons.

Une partie des établissements que nous avons accompagnés. Plus de 40 références en gastronomie, hôtellerie et artisanat premium.

{CASES.map((c, i) => (
onOpen && onOpen(c)}>
{c.cat} · {c.year}

{c.title}

{c.loc}
))}
); } window.CaseStudyGrid = CaseStudyGrid; window.CASES = CASES;