katheryn-frontend/src/app/in-your-own-skin/page.tsx

145 lines
5.4 KiB
TypeScript

import { Metadata } from 'next';
import Link from 'next/link';
import Image from 'next/image';
export const metadata: Metadata = {
title: 'In Your Own Skin',
description: 'A transformative program for creative self-discovery and personal expression',
};
export default function InYourOwnSkinPage() {
return (
<div className="min-h-screen bg-white">
{/* Hero */}
<div className="relative min-h-[60vh] flex items-center justify-center bg-gray-100">
<div className="absolute inset-0">
<Image
src="/images/iyos-image.jpg"
alt="In Your Own Skin"
fill
className="object-cover opacity-30"
priority
/>
</div>
<div className="relative text-center px-4 py-20 max-w-4xl mx-auto">
<h1 className="font-serif text-4xl md:text-6xl">In Your Own Skin</h1>
<p className="mt-6 text-lg text-gray-700 max-w-2xl mx-auto">
A transformative journey of creative self-discovery and personal expression
</p>
</div>
</div>
{/* Book Section */}
<div className="mx-auto max-w-6xl px-4 py-16">
<div className="grid gap-12 lg:grid-cols-2 items-center">
<div className="relative aspect-[3/4] max-w-md mx-auto lg:mx-0">
<Image
src="/images/iyos-book-hands.jpg"
alt="In Your Own Skin Book"
fill
className="object-cover"
sizes="(max-width: 1024px) 100vw, 50vw"
/>
</div>
<div>
<h2 className="font-serif text-3xl">The Book</h2>
<p className="mt-6 text-gray-600 leading-relaxed">
<em>In Your Own Skin</em> is a unique program designed to help you reconnect
with your authentic creative self. Through a combination of art-making,
reflective practices, and guided exploration, you&apos;ll discover new ways
to express who you truly are.
</p>
<p className="mt-4 text-gray-600 leading-relaxed">
This program is not about learning to draw or paint &ldquo;correctly&rdquo; &ndash;
it&apos;s about finding your own visual language and using creativity as a
tool for self-understanding and growth.
</p>
<a
href="https://www.amazon.co.uk/dp/B07KQXNV1S"
target="_blank"
rel="noopener noreferrer"
className="mt-8 inline-block btn btn-primary"
>
Get the Book on Amazon
</a>
</div>
</div>
</div>
{/* Endorsement */}
<div className="bg-gray-50 py-16">
<div className="mx-auto max-w-4xl px-4">
<div className="relative">
<Image
src="/images/lizzie-endorsement.png"
alt="Endorsement from Lizzie Hubbard"
width={800}
height={400}
className="w-full"
/>
</div>
</div>
</div>
{/* Depression Portrait Section */}
<div className="mx-auto max-w-6xl px-4 py-16">
<div className="grid gap-12 lg:grid-cols-2 items-center">
<div className="order-2 lg:order-1">
<h2 className="font-serif text-3xl">Who Is This For?</h2>
<ul className="mt-6 space-y-3 text-gray-600">
<li className="flex items-start gap-3">
<span className="text-gray-400"></span>
Anyone seeking a deeper connection with themselves
</li>
<li className="flex items-start gap-3">
<span className="text-gray-400"></span>
Those who feel creatively blocked or disconnected
</li>
<li className="flex items-start gap-3">
<span className="text-gray-400"></span>
People navigating life transitions or seeking clarity
</li>
<li className="flex items-start gap-3">
<span className="text-gray-400"></span>
Creative souls wanting to explore new ways of expression
</li>
</ul>
</div>
<div className="order-1 lg:order-2 relative aspect-square max-w-md mx-auto lg:mx-0">
<Image
src="/images/depression-portrait.png"
alt="Self Portrait"
fill
className="object-contain"
sizes="(max-width: 1024px) 100vw, 50vw"
/>
</div>
</div>
</div>
{/* CTA */}
<div className="border-t border-gray-200 bg-white">
<div className="mx-auto max-w-7xl px-4 py-16 text-center">
<h3 className="font-serif text-2xl">Ready to Begin?</h3>
<p className="mt-4 text-gray-600">
Get in touch to learn more about the program or book a session.
</p>
<div className="mt-8 flex flex-col sm:flex-row gap-4 justify-center">
<Link href="/contact" className="btn btn-primary">
Enquire About This Program
</Link>
<a
href="https://www.amazon.co.uk/dp/B07KQXNV1S"
target="_blank"
rel="noopener noreferrer"
className="btn btn-secondary"
>
Buy the Book
</a>
</div>
</div>
</div>
</div>
);
}