/* SERVICES — editorial minimal: hairline list of services, large detail panel, slate type on bone. No arches, no flourishes. */ const SERVICE_IMAGES = { chef: "images/service-private-dinner.svg", yoga: "images/service-yoga-table.svg", workshop: "images/service-market.svg", yacht: "images/service-galley.svg", coach: "images/service-ingredients.svg", yoga1: "images/service-yoga-private.svg" }; function Services({ t }) { const [active, setActive] = React.useState(0); const services = t.services; return (
03 {t.servicesEyebrow}

{t.servicesTitle1}{" "} {t.servicesTitle2}

{t.servicesDesc}

{services.map((s, i) => )}
{services[active].imgLabel}
No. {String(active + 1).padStart(2, "0")} / {String(services.length).padStart(2, "0")} {services[active].name1} {services[active].name2}

{services[active].name1}{" "} {services[active].name2}

{services[active].summary}

{services[active].body}

    {services[active].points.map((p, j) =>
  • {String(j + 1).padStart(2, "0")} {p}
  • )}
{t.metaWhere} {services[active].meta1}
{t.metaSize} {services[active].meta2}
{t.servicesCta}
); } window.Services = Services;