From e1c90d2d123de47da95beb03a0c68bf5ac5a40ce Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 12:39:45 +0000 Subject: [PATCH] Deploy --- .../IndigenousIngredientGallerySection.tsx | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/components/sections/IndigenousIngredientGallerySection.tsx diff --git a/src/components/sections/IndigenousIngredientGallerySection.tsx b/src/components/sections/IndigenousIngredientGallerySection.tsx new file mode 100644 index 0000000..48e9834 --- /dev/null +++ b/src/components/sections/IndigenousIngredientGallerySection.tsx @@ -0,0 +1,42 @@ +'use client' + +import { useVulaContent } from '@/hooks/useVulaContent' +import Image from 'next/image' + +export default function IndigenousIngredientGallerySection() { + const { items, loading } = useVulaContent('gallery') + + if (loading) return
+ if (items.length === 0) return null + + return ( + + ) +}