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

+ Soweto Lookbook +

+
+ {items.map((item) => { + const d = item.data as { title?: string; description?: string; image?: string } + return ( +
+
+ {d.image && ( + {d.title + )} +
+
+

{d.title}

+

{d.description}

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