From a9f41a0a60018a2c9078428c629338c683e1ce44 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 17:41:19 +0000 Subject: [PATCH] Deploy --- .../sections/GuestGallerySection.tsx | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/components/sections/GuestGallerySection.tsx diff --git a/src/components/sections/GuestGallerySection.tsx b/src/components/sections/GuestGallerySection.tsx new file mode 100644 index 0000000..89a0914 --- /dev/null +++ b/src/components/sections/GuestGallerySection.tsx @@ -0,0 +1,38 @@ +'use client' +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' + +export default function GuestGallerySection() { + const { items, loading } = useEmDashContent('gallery') + + if (loading) return
+ if (items.length === 0) return null + + return ( + + ) +} \ No newline at end of file