From 79c37b84e640ea0a2a5cf551e45c0e7e6a2f516b Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 3 Jun 2026 16:38:52 +0000 Subject: [PATCH] Deploy --- src/components/sections/GallerySection.tsx | 42 ++++++++++++++++++++++ 1 file changed, 42 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..d2b924d --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,42 @@ +'use client' +import Image from 'next/image' +import { useEmDashContent } from '@/hooks/useEmDashContent' + +export default function GallerySection() { + const { items, loading } = useEmDashContent('gallery') + if (loading) return
+ if (!items || items.length === 0) return null + return ( + + ) +} \ No newline at end of file