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() { +