mirror of
https://github.com/run-llama/auto_rfp.git
synced 2026-07-25 08:05:25 -04:00
27 lines
878 B
TypeScript
27 lines
878 B
TypeScript
import React from "react";
|
|
import { Card, CardContent, CardFooter, CardHeader } from "@/components/ui/card";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
export function ProjectCardSkeleton() {
|
|
return (
|
|
<Card className="hover:shadow-md transition-shadow">
|
|
<CardHeader className="pb-2">
|
|
<Skeleton className="h-6 w-48 mb-2" />
|
|
<Skeleton className="h-4 w-32" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Skeleton className="h-4 w-28 mb-4" />
|
|
<div className="space-y-2">
|
|
<div className="flex justify-between">
|
|
<Skeleton className="h-4 w-24" />
|
|
<Skeleton className="h-4 w-16" />
|
|
</div>
|
|
<Skeleton className="h-2 w-full" />
|
|
</div>
|
|
</CardContent>
|
|
<CardFooter className="pt-0">
|
|
<Skeleton className="h-9 w-full" />
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
}
|