From 855f23d190db1b06e44fc7c5a24b6ca8e95086b1 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 16:56:17 +0000 Subject: [PATCH] Deploy --- .../sections/VendaVisionsGallerySection.tsx | 90 +++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 src/components/sections/VendaVisionsGallerySection.tsx 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 ( + + ) +}