diff --git a/src/components/sections/FreshKicksSection.tsx b/src/components/sections/FreshKicksSection.tsx new file mode 100644 index 0000000..f17214b --- /dev/null +++ b/src/components/sections/FreshKicksSection.tsx @@ -0,0 +1,37 @@ +'use client' +import { useVulaContent } from '@/hooks/useVulaContent' +import Button from '@/components/ui/Button' +import Image from 'next/image' +import Link from 'next/link' + +export default function FreshKicksSection() { + const { items, loading } = useVulaContent('product_carousels') + if (loading) return
+ if (items.length === 0) return null + return ( +
+
+

Drops That Hit Different

+
+ {items.map((item) => { + const d = item.data as { title?: string; subtitle?: string; cta_text?: string; cta_url?: string; image?: string } + return ( +
+
+ {d.title +
+
+

{d.title}

+

{d.subtitle}

+ + + +
+
+ ) + })} +
+
+
+ ) +} \ No newline at end of file