From 2707015ffa5f5795d7c29ebe506f56c330503d53 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 1 Aug 2026 16:13:29 +0000 Subject: [PATCH] Deploy --- src/components/sections/GallerySection.tsx | 45 ++++++++++++++++++++++ 1 file changed, 45 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..6dfebd7 --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,45 @@ +'use client' +import { useVulaContent } from '@/hooks/useVulaContent' +import Image from 'next/image' + +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