A loading placeholder that mimics a heading followed by full-width paragraph body lines.
import { Skeleton04 } from "@/components/ui/skeleton-04"; export default function Default() { return ( <div className="flex min-h-[320px] w-full items-center justify-center bg-background p-8 text-foreground"> <div className="w-full max-w-md"> <Skeleton04 /> </div> </div> ); }