From d497c5735eaac2e4c80eae22e77a2030b8fca933 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 10 Feb 2026 22:01:39 +0000 Subject: [PATCH] Fix cropped heads in Art in Motion, shrink social cards - painting-process and portrait-3: object-position top to show heads - Social cards grid: constrained to max-w-4xl (~25% smaller) Co-Authored-By: Claude Opus 4.6 --- src/app/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6ad847a..c83d67c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -579,10 +579,10 @@ function AboutSection() {
{[ - { src: '/images/about/painting-process.webp', alt: 'Ximena painting' }, + { src: '/images/about/painting-process.webp', alt: 'Ximena painting', position: 'top' }, { src: '/images/art/mural-bio-centro.webp', alt: 'Mural Bio Centro Guembe' }, { src: '/images/about/portrait-2.jpg', alt: 'Ximena painting mural' }, - { src: '/images/about/portrait-3.jpg', alt: 'Ximena in studio' }, + { src: '/images/about/portrait-3.jpg', alt: 'Ximena in studio', position: 'top' }, { src: '/images/about/portrait-4.jpg', alt: 'Ximena at ceremony' }, { src: '/images/about/pachamama.jpg', alt: 'Ximena — ritual with smoke' }, ].map((photo, index) => ( @@ -592,6 +592,7 @@ function AboutSection() { alt={photo.alt} fill className="object-cover transition-transform duration-500 group-hover:scale-105" + style={photo.position ? { objectPosition: photo.position } : undefined} />
))} @@ -802,7 +803,7 @@ function SocialSection() { {/* Instagram-style Grid */} -
+
{instagramPosts.map((post, index) => (