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