import Image from 'next/image'
import Link from 'next/link'
import { Card, CardContent } from '@/components/ui/card'
import { Badge } from '@/components/ui/badge'
import { Star, MapPin } from 'lucide-react'
interface Vendor {
id: string
name: string
slug: string
category: string
description: string
image_url: string
rating: number
review_count: number
location: string
price_range?: string
}
interface VendorCardProps {
vendor: Vendor
className?: string
}
export function VendorCard({ vendor, className }: VendorCardProps) {
return (
{vendor.description}
{vendor.name}
{/* Rating */}