const vendors = [ { id: '1', name: 'The Grand Atrium', category: 'Venue', district: 'Colombo 7', price: '₨ 350K', rating: 4.9, reviews: 127, image: '🏛️', tag: 'Premium' }, { id: '2', name: 'Lens & Light Studio', category: 'Photography', district: 'Colombo 3', price: '₨ 150K', rating: 4.8, reviews: 94, image: '📸', tag: 'Top Rated' }, { id: '3', name: 'Bloom & Petal', category: 'Florist', district: 'Colombo 5', price: '₨ 80K', rating: 4.9, reviews: 68, image: '💐', tag: 'Popular' }, { id: '4', name: 'Silver Spoon Catering', category: 'Catering', district: 'Colombo 4', price: '₨ 250K', rating: 4.7, reviews: 112, image: '🍽️', tag: 'Best Value' }, ] export default function FeaturedVendors() { return (

Curated for you

Featured vendors

{vendors.map((v) => (
{v.image}
{v.tag} {v.category}

{v.name}

{v.district}

{v.rating} ({v.reviews})
{v.price}
))}
) }