This commit is contained in:
phaichayon
2026-06-11 12:46:57 +07:00
parent 1993d88306
commit 7a390cf0df
720 changed files with 100919 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
import { Card, CardHeader, CardContent, CardFooter } from '@/components/ui/card';
export function PokemonSkeleton() {
return (
<div className='animate-pulse space-y-6'>
{/* Selector card skeleton */}
<Card>
<CardHeader>
<div className='bg-muted h-6 w-40 rounded' />
<div className='bg-muted mt-2 h-4 w-72 rounded' />
</CardHeader>
<CardContent>
<div className='flex flex-wrap gap-2'>
{Array.from({ length: 10 }).map((_, i) => (
<div key={i} className='bg-muted h-9 w-14 rounded-md' />
))}
</div>
</CardContent>
</Card>
{/* Pokemon card skeleton */}
<Card>
<CardHeader>
<div className='flex items-center gap-3'>
<div className='bg-muted h-7 w-32 rounded' />
<div className='bg-muted h-5 w-16 rounded-full' />
</div>
<div className='bg-muted mt-2 h-4 w-48 rounded' />
</CardHeader>
<CardContent>
<div className='flex flex-col items-center gap-6 sm:flex-row'>
<div className='bg-muted size-40 rounded-lg' />
<div className='w-full flex-1 space-y-3'>
{Array.from({ length: 6 }).map((_, i) => (
<div key={i} className='space-y-1'>
<div className='flex justify-between'>
<div className='bg-muted h-4 w-24 rounded' />
<div className='bg-muted h-4 w-8 rounded' />
</div>
<div className='bg-muted h-2 w-full rounded-full' />
</div>
))}
</div>
</div>
</CardContent>
<CardFooter>
<div className='bg-muted h-3 w-64 rounded' />
</CardFooter>
</Card>
</div>
);
}