From 4becd8df6a0b6d130e6d4bc4481219034415e467 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 19:05:19 +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..419f3e7 --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,50 @@ +'use client' +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' + +export default function GallerySection() { + const { items, loading } = useEmDashContent('gallery') + + if (loading) return
+ if (items.length === 0) return null + + return ( + + ) +}