Image Card

A card component with an image and caption in neobrutalism style.

shadcn/ui docs →

Preview

image
The king himself

Installation

terminal
$
Other package managers
bunx --bun shadcn@latest add https://trents.tech/r/image-card.json

Usage

example.tsx
import ImageCard from "@/components/ui/image-card"

<ImageCard
  imageUrl="/my-image.jpg"
  caption="A beautiful landscape"
/>
0