From 3cfe5aa4cbf72adc6f7bd08897b92200f76c42ea Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 13:58:35 +0000 Subject: [PATCH] Deploy --- .../sections/BoutiqueGallerySection.tsx | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 src/components/sections/BoutiqueGallerySection.tsx diff --git a/src/components/sections/BoutiqueGallerySection.tsx b/src/components/sections/BoutiqueGallerySection.tsx new file mode 100644 index 0000000..a93d12f --- /dev/null +++ b/src/components/sections/BoutiqueGallerySection.tsx @@ -0,0 +1,44 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' + +export default function BoutiqueGallerySection() { + const { items, loading } = useEmDashContent('gallery') + + if (loading) return
+ if (items.length === 0) return null + + return ( + + ) +}