in components/RelevantArticles.tsx [34:44]
function ArticleSkeleton() {
return (
<div className="flex flex-col gap-2 py-2">
<div className="h-4 w-24 bg-zinc-200 rounded-md animate-pulse" />
<div className="flex flex-col gap-1">
<div className="h-4 w-full bg-zinc-200 rounded-md animate-pulse" />
<div className="h-4 w-32 bg-zinc-200 rounded-md animate-pulse" />
</div>
</div>
);
}