"use client" import React from 'react'; import { Heart, MapPin } from 'lucide-react'; import Link from 'next/link'; // import { Link } from 'next/navigation'; interface ListingCardProps { id: string; title: string; price?: string; location?: string; image?: string; date?: string; } export default function ListingCard({ id, title, price, location, image, date }: ListingCardProps) { return (
{title} {/* */}

{title}

{price}
{location}
{date}
); }