diff --git a/src/components/sections/GallerySection.tsx b/src/components/sections/GallerySection.tsx new file mode 100644 index 0000000..985e63a --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,52 @@ +'use client' + +import Image from 'next/image' +import { useVulaContent } from '@/hooks/useVulaContent' + +interface GalleryItemData { + title?: string + description?: string + image?: string +} + +export default function GallerySection() { + const { items, loading } = useVulaContent('gallery') + + if (loading) { + return
+ } + + if (items.length === 0) return null + + return ( + + ) +} \ No newline at end of file