// ===================================== import React from "react"; export function Placeholder({ title }: { title: string }) { return (

{title}

{Array.from({ length: 6 }).map((_, i) => (
Card {i + 1}
))}
); }