From 2da1408b1f3fd486b15ca404e0bf3eef9547820e Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 1 Aug 2026 16:26:34 +0000 Subject: [PATCH] Deploy --- .../sections/SowetoStyleGallerySection.tsx | 76 +++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 src/components/sections/SowetoStyleGallerySection.tsx diff --git a/src/components/sections/SowetoStyleGallerySection.tsx b/src/components/sections/SowetoStyleGallerySection.tsx new file mode 100644 index 0000000..5c82fbd --- /dev/null +++ b/src/components/sections/SowetoStyleGallerySection.tsx @@ -0,0 +1,76 @@ +'use client' + +import { useVulaContent } from '@/hooks/useVulaContent' +import Image from 'next/image' + +export default function SowetoStyleGallerySection() { + const { items, loading } = useVulaContent('gallery') + if (loading) { + return ( +
+
+
+ ) + } + if (items.length === 0) return null + + return ( + + ) +}