From b84a8bb8b1e391497a98b9e0c65843bc65fd5a94 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 17:42:07 +0000 Subject: [PATCH] Deploy --- .../sections/FarmsteadGallerySection.tsx | 62 +++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/components/sections/FarmsteadGallerySection.tsx diff --git a/src/components/sections/FarmsteadGallerySection.tsx b/src/components/sections/FarmsteadGallerySection.tsx new file mode 100644 index 0000000..2ccc741 --- /dev/null +++ b/src/components/sections/FarmsteadGallerySection.tsx @@ -0,0 +1,62 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' + +export default function FarmsteadGallerySection() { + const { items, loading } = useEmDashContent('gallery') + + if (loading) return
+ if (items.length === 0) return null + + return ( + + ) +} \ No newline at end of file