From 532be2bfc3fd36291481f7789f807d148de6611c Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:44 +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