From dfac8e9967c8a6f5aaf4d93a00f627db913a9016 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Fri, 31 Jul 2026 18:44:26 +0000 Subject: [PATCH] Deploy --- src/components/sections/GallerySection.tsx | 50 ++++++++++++++++++++++ 1 file changed, 50 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..60b97c5 --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,50 @@ +'use client' + +import Image from 'next/image' +import { useVulaContent } from '@/hooks/useVulaContent' + +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