Card 8

PreviousNext

Soft background card with subtle primary color theme

Docs
shadcn-studiocomponent

Preview

Loading preview…
registry/new-york/components/card/card-08.tsx
import { Card, CardContent, CardHeader, CardTitle } from '@/registry/new-york/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

Installation

npx shadcn@latest add @shadcn-studio/card-08

Usage

import { Card08 } from "@/components/card-08"
<Card08 />