'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}

) })}
) }