From 6309f28fe561310d83fc2cbda081c943e975bf3c Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:42 +0000 Subject: [PATCH] Deploy --- .../sections/StreetStyleGallerySection.tsx | 76 +++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 src/components/sections/StreetStyleGallerySection.tsx diff --git a/src/components/sections/StreetStyleGallerySection.tsx b/src/components/sections/StreetStyleGallerySection.tsx new file mode 100644 index 0000000..79de98a --- /dev/null +++ b/src/components/sections/StreetStyleGallerySection.tsx @@ -0,0 +1,76 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' +import { Card, CardContent } from '@/components/ui/Card' + +export default function StreetStyleGallerySection() { + const { items, loading } = useEmDashContent('gallery') + + if (loading) { + return ( +
+
+
+ ) + } + + if (items.length === 0) return null + + return ( + + ) +}