'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}

) })}
) }