From 7495f953c5c2d52124eb8fb57169f595472b8b5b Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 1 Aug 2026 16:13:30 +0000 Subject: [PATCH] Deploy --- .../sections/ShopTheLookSection.tsx | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/components/sections/ShopTheLookSection.tsx diff --git a/src/components/sections/ShopTheLookSection.tsx b/src/components/sections/ShopTheLookSection.tsx new file mode 100644 index 0000000..3fccfc5 --- /dev/null +++ b/src/components/sections/ShopTheLookSection.tsx @@ -0,0 +1,33 @@ +'use client' +import Image from 'next/image' +import { useVulaContent } from '@/hooks/useVulaContent' + +export default function ShopTheLookSection() { + const { items, loading } = useVulaContent('product_carousels') + if (loading) return
+ if (items.length === 0) return null + + return ( +
+
+
+ {items.map((item) => { + const d = item.data as Record + const imageUrl = d.image + const title = d.title || d.name || d.headline + const body = d.body || d.description || d.excerpt || d.bio + return ( +
+ {imageUrl &&
{title
} +
+ {title &&

{title}

} + {body &&

{body}

} +
+
+ ) + })} +
+
+
+ ) +}