Components
Loading preview...
Here is First Place Leaderboard component
@nayan_radadiya6
npx shadcn@latest add https://21st.dev/r/nayan_radadiya6/first-place-leaderboardimport { LeaderboardCard } from '@/components/ui/first-place-leaderboard';
export default function LbSecond() {
return (
<div className='max-w-sm'>
<LeaderboardCard
name='Maya Rodriguez'
amount={7040}
avatarSrc='https://raw.githubusercontent.com/nayanrdeveloper/shadcn-extras/refs/heads/dev/public/avatars/man.png'
rank={2}
score={80}
tone='blue'
/>
</div>
);
}