'use client' import { useEmDashContent } from "@/hooks/useEmDashContent" import Image from "next/image" import { useState } from "react" export default function VendaVisionsGallerySection() { const { items, loading } = useEmDashContent("gallery") const [selectedIndex, setSelectedIndex] = useState(null) if (loading) { return (
) } if (items.length === 0) return null return ( ) }