From bc45ea50606f0afe9d3e0536d10cc363e4ee0bcf Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Thu, 4 Jun 2026 11:25:14 +0000 Subject: [PATCH] Deploy --- src/components/sections/GallerySection.tsx | 54 ++++++++++++++++++++++ 1 file changed, 54 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..841a4d4 --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,54 @@ +'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 ( + + ) +} \ No newline at end of file