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 CardOutlineDemo = () => {
return (
<Card className='border-primary max-w-md gap-0 bg-transparent shadow-none'>
<CardHeader>
<CardTitle>Creative Clash</CardTitle>
</CardHeader>
<CardContent>
Step into a space where design skills are tested, ideas come alive, and only the boldest concepts win the
spotlight.
</CardContent>
</Card>
)
}
export default CardOutlineDemo