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