Components
Loading preview...
Here is Card component
@ShadcnStudio
npx shadcn@latest add https://21st.dev/r/ShadcnStudio/card-studioimport { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
const CardSoftDemo = () => {
return (
<Card className='bg-primary/20 max-w-md gap-0'>
<CardHeader>
<CardTitle>Design Throwdown</CardTitle>
</CardHeader>
<CardContent>
Where passion, pressure, and pixels collide—push your creativity to the edge and show what you are made of.
</CardContent>
</Card>
)
}
export default CardSoftDemo