diff --git a/src/app/page.tsx b/src/app/page.tsx
index daabc14..68979eb 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -161,6 +161,8 @@ function RitualArtSection() {
// Art Gallery Section
function GallerySection() {
+ const [selectedArtwork, setSelectedArtwork] = useState<{ src: string; title: string } | null>(null);
+
const artworks = [
{ src: '/images/art/goddess.webp?v=2', title: 'Goddess' },
{ src: '/images/art/mujer-medicina.webp', title: 'Mujer Medicina' },
@@ -197,6 +199,15 @@ function GallerySection() {
{ src: '/images/art/uni-verso.webp', title: 'Uni Verso' },
{ src: '/images/art/wayra.webp', title: 'Wayra' },
{ src: '/images/art/la-illimani.webp', title: 'La Illimani' },
+ { src: '/images/about/process-1.webp', title: 'Eagle & Jaguar' },
+ { src: '/images/about/process-2.webp', title: 'Kundalini' },
+ { src: '/images/about/process-3.webp', title: 'Ancestral Totem' },
+ { src: '/images/about/process-4.webp', title: 'Detail — Face' },
+ { src: '/images/about/process-5.webp', title: 'Detail — Fire' },
+ { src: '/images/about/process-6.webp', title: 'Sacred Union' },
+ { src: '/images/about/process-7.webp', title: 'Shiva II' },
+ { src: '/images/about/portrait-artist-1.webp', title: 'Night Guardians' },
+ { src: '/images/about/portrait-artist-2.webp', title: 'Golden Meditation' },
];
return (
@@ -217,6 +228,7 @@ function GallerySection() {
setSelectedArtwork(artwork)}
>
+
+ {/* Lightbox Modal */}
+ {selectedArtwork && (
+ setSelectedArtwork(null)}
+ >
+
+
e.stopPropagation()}
+ >
+
+
+
+
+ {selectedArtwork.title}
+
+
+
+ )}
);
}
@@ -520,43 +568,7 @@ function AboutSection() {
- {/* Additional Photos */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {/* Process & Studio Photos */}
+ {/* Art in Motion */}
THE PROCESS
@@ -568,16 +580,11 @@ function AboutSection() {
{[
- { src: '/images/about/portrait-artist-1.webp', alt: 'Ximena in studio' },
- { src: '/images/about/portrait-artist-2.webp', alt: 'Ximena Quinteros - XHIVA ART' },
- { src: '/images/about/painting-process.webp', alt: 'Painting process' },
- { src: '/images/about/process-1.webp', alt: 'Creative process' },
- { src: '/images/about/process-2.webp', alt: 'Studio work' },
- { src: '/images/about/process-3.webp', alt: 'Art in progress' },
- { src: '/images/about/process-4.webp', alt: 'Working on art' },
- { src: '/images/about/process-5.webp', alt: 'Art creation' },
- { src: '/images/about/process-6.webp', alt: 'Artistic process' },
- { src: '/images/about/process-7.webp', alt: 'Art studio' },
+ { src: '/images/about/painting-process.webp', alt: 'Ximena painting' },
+ { src: '/images/about/portrait-2.jpg', alt: 'Ximena painting mural' },
+ { src: '/images/about/portrait-3.jpg', alt: 'Ximena in studio' },
+ { src: '/images/about/portrait-4.jpg', alt: 'Ximena at ceremony' },
+ { src: '/images/about/pachamama.jpg', alt: 'Ximena — ritual with smoke' },
].map((photo, index) => (
{/* Background Image */}
-