From be5a684ea35e2f7e205fbdb81a1b60e4a52f579a Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:39:16 +0000 Subject: [PATCH] Deploy --- .../TranquilMomentsGallerySection.tsx | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/components/sections/TranquilMomentsGallerySection.tsx diff --git a/src/components/sections/TranquilMomentsGallerySection.tsx b/src/components/sections/TranquilMomentsGallerySection.tsx new file mode 100644 index 0000000..cc475b9 --- /dev/null +++ b/src/components/sections/TranquilMomentsGallerySection.tsx @@ -0,0 +1,52 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' +import { useState } from 'react' + +export default function TranquilMomentsGallerySection() { + const { items, loading } = useEmDashContent('gallery') + const [lightboxIndex, setLightboxIndex] = useState(null) + + if (loading) return
+ if (items.length === 0) return null + + return ( + + ) +} \ No newline at end of file