diff --git a/src/components/sections/GallerySection.tsx b/src/components/sections/GallerySection.tsx new file mode 100644 index 0000000..34f43ba --- /dev/null +++ b/src/components/sections/GallerySection.tsx @@ -0,0 +1,40 @@ +'use client' + +import { useVulaContent } from '@/hooks/useVulaContent' +import { Card } from '@/components/ui/Card' +import Image from 'next/image' + +export default function GallerySection() { + const { items, loading } = useVulaContent('gallery') + + if (loading) return
{d.description}
} +