);
return ( <div className="cursor-pointer rounded-lg overflow-hidden shadow-lg hover:shadow-xl transition transform hover:-translate-y-1 bg-white" onClick=() => onClick(item) > <img src=imageUrl alt=item.title className="w-full h-64 object-cover" /> <div className="p-4"> <h3 className="font-bold text-lg truncate">item.title </h3> <p className="text-gray-600 text-sm"> 'N/A' </p> <p className="text-yellow-500 text-sm">⭐ item.vote_average?.toFixed(1)/10</p> </div> </div> ); ; xxx-av20432
loading && <p>Searching...</p>
const TMDB_BASE = 'https://api.themoviedb.org/3'; const API_KEY = process.env.TMDB_API_KEY; return ( <