Components
A loading placeholder for an article preview with a hero image, title, byline, and stacked body lines.
Loading preview...
import { Skeleton14 } from "@/components/ui/skeleton-14";
export default function Default() {
return (
<div className="flex min-h-[420px] w-full items-center justify-center bg-background p-8">
<Skeleton14 />
</div>
);
}