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 ( + + ) +}