From 53b93a42380334f13b4321c5d4b31c45fb87b749 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 13:27:26 +0000 Subject: [PATCH] Deploy --- src/components/sections/GallerySection.tsx | 40 ++++++++++++++++++++++ 1 file changed, 40 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..34f43ba --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,40 @@ +'use client' + +import { useVulaContent } from '@/hooks/useVulaContent' +import { Card } from '@/components/ui/Card' +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