From 041a064d44ae49fcab49ae2a91b9ffc2a2335b1a Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sun, 12 Apr 2026 17:59:27 -0400 Subject: [PATCH] feat: add Jaguar Path landing page for Integration Circles event series New event landing page at /jaguar-path for Ximena's Zurich Integration Circles (April & May 2025) with hero, offerings grid, dates, and Eventfrog/Instagram CTAs. Co-Authored-By: Claude Opus 4.6 --- src/app/jaguar-path/page.tsx | 227 ++++++++++++++++++++++++++++++++++ src/components/Navigation.tsx | 1 + 2 files changed, 228 insertions(+) create mode 100644 src/app/jaguar-path/page.tsx diff --git a/src/app/jaguar-path/page.tsx b/src/app/jaguar-path/page.tsx new file mode 100644 index 0000000..756aad7 --- /dev/null +++ b/src/app/jaguar-path/page.tsx @@ -0,0 +1,227 @@ +import type { Metadata } from 'next'; +import Image from 'next/image'; + +export const metadata: Metadata = { + title: 'The Jaguar Path — Integration Circles | XHIVA', + description: 'A space to pause, cleanse, and reconnect. Integration Circles in Zurich — April & May 2025. Limited to 12 people.', +}; + +const offerings = [ + { + title: 'Energetic Cleansing', + description: 'Release what no longer serves you through guided somatic and energetic practices.', + }, + { + title: 'Reconnect', + description: 'Return to your body, your breath, and your inner knowing.', + }, + { + title: 'Deepen Intuition', + description: 'Strengthen the bridge between your rational mind and intuitive wisdom.', + }, + { + title: 'Embrace Transformation', + description: 'Step into a new cycle with clarity, grounding and intention.', + }, +]; + +const cycles = [ + { + label: 'Cycle 1', + dates: '13 April — 27 April 2025', + sessions: ['Sunday 13 April', 'Sunday 20 April', 'Sunday 27 April'], + }, + { + label: 'Cycle 2', + dates: '11 May — 25 May 2025', + sessions: ['Sunday 11 May', 'Sunday 18 May', 'Sunday 25 May'], + }, +]; + +export default function JaguarPathPage() { + return ( + <> + {/* Hero */} +
+
+ Mujer Jaguar +
+
+
+

+ A NEW SERIES BY XIMENA +

+

+ The Jaguar Path +

+

+ Integration Circles +

+
+

+ Zurich · April & May 2025 +

+
+
+ + {/* Description */} +
+
+

+ THE INVITATION +

+

+ A Space to Return +

+
+

+ A space to pause, cleanse, and reconnect. These Integration Circles are intimate + gatherings designed to support you through transitions, emotional release and the + deep work of remembering who you are. Rooted in somatic intelligence, ancestral + memory and intuitive practice, each circle offers a container of clarity, presence + and transformation. +

+
+
+ + {/* What Each Circle Offers */} +
+
+
+

+ THE OFFERING +

+

+ What Each Circle Offers +

+
+
+ +
+ {offerings.map((item, index) => ( +
+ + {String(index + 1).padStart(2, '0')} + +

{item.title}

+

{item.description}

+
+ ))} +
+
+
+ + {/* Details */} +
+
+

+ THE DETAILS +

+

+ What to Expect +

+
+
+

+ Each session includes individual energetic cleansing, crystal work, and rap + (traditional plant medicine song) to support your process. You will be held + in a safe, sacred space where the body can release, the mind can soften, and + the spirit can recalibrate. +

+

+ These circles are not therapy — they are ritual containers for those ready to + do the inner work with honesty, grounding and compassion. +

+
+
+
+ + {/* Dates & Logistics */} +
+
+
+

+ DATES & LOGISTICS +

+

+ Two Cycles, Three Sessions Each +

+
+
+ +
+ {cycles.map((cycle) => ( +
+

+ {cycle.label.toUpperCase()} +

+

{cycle.dates}

+
    + {cycle.sessions.map((session) => ( +
  • {session}
  • + ))} +
+
+ ))} +
+ +
+

+ LIMITED TO 12 PEOPLE PER CIRCLE +

+

+ Zurich, Switzerland +

+
+
+
+ + {/* CTA */} +
+
+ Mujer Jaguar +
+
+

+ Reserve Your Place +

+
+

+ If you feel called to walk this path, secure your spot through Eventfrog + or learn more on Instagram. +

+
+ + Book on Eventfrog + + + View on Instagram + +
+
+
+ + ); +} diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx index e56795e..46b01c9 100644 --- a/src/components/Navigation.tsx +++ b/src/components/Navigation.tsx @@ -18,6 +18,7 @@ const navLinks = [ { href: '/our-artisans', label: 'Our Artisans' }, ], }, + { href: '/jaguar-path', label: 'Jaguar Path' }, { href: '/contact', label: 'Contact' }, ];