From e32f05d09b9880c87a0550ee8f9203d6fede2f41 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 18:06:17 +0000 Subject: [PATCH] Deploy --- .../sections/StreetStyleLookbookSection.tsx | 85 +++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 src/components/sections/StreetStyleLookbookSection.tsx diff --git a/src/components/sections/StreetStyleLookbookSection.tsx b/src/components/sections/StreetStyleLookbookSection.tsx new file mode 100644 index 0000000..381f0a4 --- /dev/null +++ b/src/components/sections/StreetStyleLookbookSection.tsx @@ -0,0 +1,85 @@ +'use client' + +import { useVulaContent } from '@/hooks/useVulaContent' +import Image from 'next/image' +import Link from 'next/link' + +export default function StreetStyleLookbookSection() { + const { items, loading } = useVulaContent('gallery') + + if (loading) { + return ( +
+
+
+ ) + } + + if (items.length === 0) return null + + return ( +
+
+
+ Soweto Stories +

+ Street Style Lookbook +

+

Real people, real fits, real streets.

+
+ +
+ {items.map((item) => { + const d = item.data as { title?: string; description?: string; image?: string } + return ( +
+
+ {d.image ? ( + {d.title + ) : ( +
+ No Image +
+ )} +
+ + {/* Hover overlay */} +
+

{d.title || ''}

+ {d.description && ( +

{d.description}

+ )} + + Shop Look → + +
+ + {/* Tape accent */} +
+ + {/* Always visible title on bottom */} +
+

{d.title || 'Untitled'}

+
+
+ ) + })} +
+
+
+ ) +}