From 0de9ddc2fa5bfc5f5843f1f2b813db9381e28106 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 18:34:54 +0000 Subject: [PATCH] Deploy --- src/components/sections/GallerySection.tsx | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/components/sections/GallerySection.tsx diff --git a/src/components/sections/GallerySection.tsx b/src/components/sections/GallerySection.tsx new file mode 100644 index 0000000..74eb080 --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,53 @@ +'use client' +import { useVulaContent } from '@/hooks/useVulaContent' +import Image from 'next/image' +import { Card, CardContent } from '@/components/ui/Card' +import { useState } from 'react' +import Modal from '@/components/ui/Modal' +import { X } from 'lucide-react' + +export default function GallerySection() { + const { items, loading } = useVulaContent('gallery') + const [selected, setSelected] = useState(null) + if (loading) return
+ if (items.length === 0) return null + return ( + + ) +} \ No newline at end of file