diff --git a/src/components/sections/VendaVisionsGallerySection.tsx b/src/components/sections/VendaVisionsGallerySection.tsx new file mode 100644 index 0000000..1126f55 --- /dev/null +++ b/src/components/sections/VendaVisionsGallerySection.tsx @@ -0,0 +1,90 @@ +'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 ( + + ) +}