From 1a86923ce69f048bf6cb99005e9d320e9536e44b Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 5 Aug 2026 18:14:38 +0000 Subject: [PATCH] Deploy --- .../sections/OfficeGallerySection.tsx | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/components/sections/OfficeGallerySection.tsx diff --git a/src/components/sections/OfficeGallerySection.tsx b/src/components/sections/OfficeGallerySection.tsx new file mode 100644 index 0000000..cd383af --- /dev/null +++ b/src/components/sections/OfficeGallerySection.tsx @@ -0,0 +1,52 @@ +'use client' +import Image from 'next/image' +import { useVulaContent } from '@/hooks/useVulaContent' +import { Camera } from 'lucide-react' + +export default function OfficeGallerySection() { + const { items, loading } = useVulaContent('gallery') + + if (loading) { + return
+ } + + if (items.length === 0) return null + + return ( + + ) +} \ No newline at end of file