Components
A loading placeholder for a pricing card showing a plan name, price, feature rows, and a call-to-action button.
Loading preview...
import { Skeleton15 } from "@/components/ui/skeleton-15";
export default function Default() {
return (
<div className="flex min-h-svh w-full items-center justify-center bg-background p-6">
<Skeleton15 />
</div>
);
}