From f75afdbc1228ec1e4ae1417e164d00ed7f0e6fac Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 1 Aug 2026 17:20:26 +0000 Subject: [PATCH] Deploy --- src/components/sections/GallerySection.tsx | 52 ++++++++++++++++++++++ 1 file changed, 52 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..985e63a --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,52 @@ +'use client' + +import Image from 'next/image' +import { useVulaContent } from '@/hooks/useVulaContent' + +interface GalleryItemData { + title?: string + description?: string + image?: string +} + +export default function GallerySection() { + const { items, loading } = useVulaContent('gallery') + + if (loading) { + return
+ } + + if (items.length === 0) return null + + return ( + + ) +} \ No newline at end of file