Spaces:
Sleeping
Sleeping
File size: 258 Bytes
f8df83d | 1 2 3 4 5 6 7 8 9 | export default function EmptyState() {
return (
<div className="text-center py-16 text-gray-400">
<p className="text-lg">No reviews found for this title.</p>
<p className="text-sm mt-2">Try a more widely reviewed film.</p>
</div>
)
}
|