From add2109e8862dfd471871bc7da1bc5595b348293 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 3 Feb 2026 15:03:49 +0000 Subject: [PATCH] Add social links to Re Evolution Art section and new social connect section - Re Evolution Art: replace generic Explore Events button with Instagram and Facebook Community buttons linking to @reevolutionart and FB group - New SocialSection before footer with image grid carousel linking to @xhiva_art Instagram, plus Follow buttons for Instagram and Facebook Co-Authored-By: Claude Opus 4.5 --- src/app/page.tsx | 93 +++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 89 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9f28328..10263bf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -374,10 +374,26 @@ function ReEvolutionSection() { ))} -
- - Explore Events - + {/* Social Links */} +
+ + Instagram + + + Facebook Community +
@@ -678,6 +694,74 @@ function ContactSection() { ); } +// Social Connect Section +function SocialSection() { + const instagramPosts = [ + { image: '/images/art/sacred-geometry.jpg', alt: 'Sacred Geometry' }, + { image: '/images/art/goddess.webp?v=2', alt: 'Goddess' }, + { image: '/images/art/crystal-1.jpg', alt: 'Crystal Work' }, + { image: '/images/art/featured.jpg?v=2', alt: 'Featured Art' }, + { image: '/images/about/portrait-1.jpg', alt: 'Portrait' }, + { image: '/images/reevolution/dj-xhiva.jpg', alt: 'DJ XHIVA' }, + ]; + + return ( +
+
+
+

+ FOLLOW THE JOURNEY +

+

+ Connect on Socials +

+
+
+ + {/* Image Grid */} + + {instagramPosts.map((post, index) => ( +
+ {post.alt} +
+ ))} +
+ + {/* Social Buttons */} +
+ + Follow @xhiva_art on Instagram + + + Follow on Facebook + +
+
+
+ ); +} + // Footer function Footer() { return ( @@ -758,6 +842,7 @@ export default function Home() { +