'use client' import { useEmDashContent } from '@/hooks/useEmDashContent' import Image from 'next/image' export default function GallerySection() { const { items, loading } = useEmDashContent('gallery') if (loading) return
if (items.length === 0) return null return ( ) }