import Image from 'next/image'; const collections = [ { title: 'Bestsellers', image: '/images/collections/bestsellers.jpg', // replace with actual image path }, { title: 'New Arrivals', image: '/images/collections/new-arrivals.jpg', // replace with actual image path }, { title: 'Gift Collection', image: '/images/collections/gifting.jpg', // replace with actual image path }, ]; export function Collections() { return (
{collections.map((collection, index) => (
{collection.title}

{collection.title}

))}
); }