Devaholic's picture
feat: UI for sentiment trend analysis
f8df83d
raw
history blame contribute delete
258 Bytes
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>
)
}