From aeb7555857d7b26192a14fb999ffcac087c32d68 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:25 +0000 Subject: [PATCH] Deploy --- .../sections/GuesthouseGallerySection.tsx | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/components/sections/GuesthouseGallerySection.tsx diff --git a/src/components/sections/GuesthouseGallerySection.tsx b/src/components/sections/GuesthouseGallerySection.tsx new file mode 100644 index 0000000..e4df4ae --- /dev/null +++ b/src/components/sections/GuesthouseGallerySection.tsx @@ -0,0 +1,53 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' + +export default function GuesthouseGallerySection() { + const { items, loading } = useEmDashContent('gallery') + + if (loading) { + return ( +
+
+
+ ) + } + + if (items.length === 0) return null + + return ( + + ) +}