feat: add crystal therapy and mujer medicina photos to Jaguar Path page
CI/CD / deploy (push) Successful in 1m12s
Details
CI/CD / deploy (push) Successful in 1m12s
Details
Adds two inline image sections with text — crystal therapy between description and offerings, mujer medicina between offerings and details. Follows the services page alternating image/text grid pattern. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
041a064d44
commit
b94104f84f
|
|
@ -90,19 +90,39 @@ export default function JaguarPathPage() {
|
|||
</div>
|
||||
</section>
|
||||
|
||||
{/* What Each Circle Offers */}
|
||||
{/* Crystal Therapy Image */}
|
||||
<section className="section">
|
||||
<div className="max-w-5xl mx-auto">
|
||||
<div className="text-center mb-12">
|
||||
<p className="font-sans-alt text-xs tracking-[0.2em] text-[var(--accent-gold)] mb-4">
|
||||
THE OFFERING
|
||||
</p>
|
||||
<h2 className="text-4xl font-light mb-6">
|
||||
What Each Circle Offers
|
||||
</h2>
|
||||
<div className="divider"></div>
|
||||
<div className="max-w-6xl mx-auto">
|
||||
<div className="grid md:grid-cols-2 gap-12 items-center">
|
||||
<div className="relative aspect-[4/3] rounded-2xl overflow-hidden shadow-xl">
|
||||
<Image
|
||||
src="/images/services/crystal-therapy.webp"
|
||||
alt="Crystal therapy session"
|
||||
fill
|
||||
className="object-cover"
|
||||
/>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<p className="font-sans-alt text-xs tracking-[0.2em] text-[var(--accent-gold)] mb-4">
|
||||
THE OFFERING
|
||||
</p>
|
||||
<h2 className="text-4xl font-light mb-6">
|
||||
What Each Circle Offers
|
||||
</h2>
|
||||
<div className="divider"></div>
|
||||
<p className="text-lg leading-relaxed opacity-80">
|
||||
Each circle is a journey through four dimensions of healing — cleansing,
|
||||
reconnection, intuition and transformation. Through somatic practice,
|
||||
breathwork and ritual, you are guided back to coherence.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Offerings Grid */}
|
||||
<section className="section bg-white">
|
||||
<div className="max-w-5xl mx-auto">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
{offerings.map((item, index) => (
|
||||
<div key={index} className="text-center p-8 border border-black/10 rounded-lg">
|
||||
|
|
@ -117,6 +137,36 @@ export default function JaguarPathPage() {
|
|||
</div>
|
||||
</section>
|
||||
|
||||
{/* Mujer Medicina Art */}
|
||||
<section className="section">
|
||||
<div className="max-w-6xl mx-auto">
|
||||
<div className="grid md:grid-cols-2 gap-12 items-center md:[&>*:first-child]:order-2">
|
||||
<div className="relative aspect-[4/3] rounded-2xl overflow-hidden shadow-xl">
|
||||
<Image
|
||||
src="/images/art/mujer-medicina.webp"
|
||||
alt="Mujer Medicina — art by Ximena"
|
||||
fill
|
||||
className="object-cover"
|
||||
/>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<p className="font-sans-alt text-xs tracking-[0.2em] text-[var(--accent-gold)] mb-4">
|
||||
THE PATH
|
||||
</p>
|
||||
<h2 className="text-4xl font-light mb-6">
|
||||
Walking with the Jaguar
|
||||
</h2>
|
||||
<div className="divider"></div>
|
||||
<p className="text-lg leading-relaxed opacity-80">
|
||||
The jaguar is an archetype of power, intuition and fearless transformation.
|
||||
In these circles, we walk alongside this energy — learning to see in the dark,
|
||||
to trust our instincts, and to move through life with grace and sovereignty.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Details */}
|
||||
<section className="section dark-section">
|
||||
<div className="max-w-3xl mx-auto text-center">
|
||||
|
|
|
|||
Loading…
Reference in New Issue