/* global React */ /* sections-recognition.jsx ───────────────────────────────────────── "Do you recognize this?" — centred, text-led, breathing section. Placed after Our Sanctuary (RetreatShowcase). ──────────────────────────────────────────────────────────────────── */ const RZ_ITEMS = [ { text: "I want to be fully productive at work — and fully present with family and friends.", icon: , label: "balance", }, { text: "I want to wake up with real energy, and a body that can keep up with my life.", icon: <>, label: "energy", }, { text: "I want to stay calm and steady when the pressure is highest.", icon: <>, label: "calm", }, { text: "I want a clear head and clear judgment in the moments that matter most.", icon: <>, label: "clarity", }, { text: "I want to know how I am really doing — an honest picture of my health, before it's too late.", icon: <>, label: "health", }, { text: "I want to stay connected to who I am and why I started — and have a circle of people who get it.", icon: <>, label: "connection", }, ]; function RecognitionSection() { return (
The honest question

Do you recognize this?

    {RZ_ITEMS.map((item, i) => (
  • {item.icon} {item.text}
  • ))}
); } Object.assign(window, { RecognitionSection });