From f565b0815c006486358b3e1005b18f28240c744e Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 15 Jul 2026 09:25:25 +0000 Subject: [PATCH] Deploy --- .../sections/BushGallerySection.tsx | 105 ++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 src/components/sections/BushGallerySection.tsx diff --git a/src/components/sections/BushGallerySection.tsx b/src/components/sections/BushGallerySection.tsx new file mode 100644 index 0000000..6cd2fa2 --- /dev/null +++ b/src/components/sections/BushGallerySection.tsx @@ -0,0 +1,105 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' +import { useState } from 'react' +import { X } from 'lucide-react' + +export default function BushGallerySection() { + const { items, loading } = useEmDashContent('gallery') + const [lightboxItem, setLightboxItem] = useState<{ title?: string; description?: string; image?: string } | null>(null) + + if (loading) { + return ( +
+
+
+ ) + } + + if (items.length === 0) return null + + return ( + + ) +}