Tailwind UI Pattern Registry for humans and agents

portfolio video cards case-study hover overlay agency portfolio video cards case-study overlay hover portfolio grid with video preview on hover dark card case study grid agency work showcase with play button

Portfolio Video Cards

Fetch pattern JSON: curl https://webspire.de/patterns/portfolio/video-cards.json

Details

Family
portfolio
Tier
base
Kind
section
Responsive Dark Mode Tailwind Only SSR Safe Copy & Paste
Stable Published
portfoliovideocardscase-studyhoveroverlayagency

Slots

Name Required Description
heading Yes Section heading and subtext.
cards Yes Portfolio cards — each needs a media area, category badge, title, and meta line.

Dark gradient cards where the project content (title, category, meta) is always visible at the bottom, and a frosted-glass play button appears on hover using only group-hover:opacity-100. Replace the gradient placeholder with a real <video> element — the overlay works identically.

With real video

<article class="group relative overflow-hidden rounded-2xl">
  <video
    class="aspect-[4/3] w-full object-cover"
    src="/work/nova-rebrand.mp4"
    autoplay muted loop playsinline
    preload="none"
  ></video>
  <!-- same overlay and bottom content -->
</article>