Components/Image Card

Image Card

A linked card with an image, title, subtitle, and description.

Installation

pnpm dlx shadcn@latest add https://orbit.ruturaj.xyz/r/image-card.json

Usage

import { ImageCard } from "@/components/image-card"

export default function Page() {
  return (
    <ImageCard
      title="Professional services"
      description="Get tailored guidance on implementation."
      imageSrc="/hero.jpg"
      imageAltText="Hero image"
      cardLink="#"
      subTitle="Author | January 20, 2026"
    />
  )
}

Examples