feat(lesson): add lesson modal

This commit is contained in:
shafin-r
2026-02-01 18:20:03 +06:00
parent 62238cbf8f
commit 2ac88835f9
5 changed files with 280 additions and 54 deletions

View File

@ -0,0 +1,11 @@
import { Card, CardContent } from "./ui/card";
export const LessonSkeleton = () => (
<Card className="py-0 pb-5 rounded-4xl overflow-hidden animate-pulse">
<div className="w-full h-48 bg-muted" />
<CardContent className="space-y-2 pt-4">
<div className="h-5 w-2/3 bg-muted rounded" />
<div className="h-4 w-1/2 bg-muted rounded" />
</CardContent>
</Card>
);