Components
A never-before-seen, high-impact React feature showcase grid built with Tailwind CSS and Framer Motion. It delivers a mosaic layout with one large hero card and multiple supporting cards, each with interactive 3D-tilt hover effects, animated badges, and responsive parallax backgrounds.
npx @21st-dev/cli add dhileepkumargm/ultra-quality-showcase-gridLoading preview...
"use client";
import React from "react";
import { UltraQualityShowcaseGrid, ShowcaseCard } from "@/components/ui/ultra-quality-showcase-grid";
const sampleCards: ShowcaseCard[] = [
{
id: "big",
imageUrl: "https://hoirqrkdgbmvpwutwuwj-all.supabase.co/storage/v1/object/public/assets/assets/f2227b53-6c8a-42ab-a473-d7a119e14c95_1600w.jpg",
badge: { text: "NEW", colorClass: "bg-emerald-500/20 text-emerald-600" },
subtitle: "Unlimited pipeline",
title: "Launch experiments, not guesses",
description:
"Submit unlimited test ideas and creative requests. We prioritize by impact, ship fast, and report clearly so learnings stack every week.",
ctaPrimary: { label: "See case studies", href: "#" },
ctaSecondary: { label: "Start a request", href: "#" },
},
{
id: "requests",
imageUrl: "https://hoirqrkdgbmvpwutwuwj-all.supabase.co/storage/v1/object/public/assets/assets/91cceaf5-3a72-47d0-9d15-ee799cfea874_800w.jpg",
title: "Requests & revisions",
description:
"Iterate quickly with async requests and structured feedback. Every round ends with clear rationale and next steps.",
},
{
id: "pricing",
imageUrl: "https://hoirqrkdgbmvpwutwuwj-all.supabase.co/storage/v1/object/public/assets/assets/dc543ce0-b776-4e3a-a6d5-933229659050_800w.jpg",
title: "Worry-free pricing",
description:
"Simple plans, no surprises. Pause anytime. Scale up when you’re ready.",
},
{
id: "turnaround",
imageUrl: "https://hoirqrkdgbmvpwutwuwj-all.supabase.co/storage/v1/object/public/assets/assets/6e2b186b-730f-4956-8043-14955d1766bf_800w.jpg",
badge: { text: "NEW", colorClass: "bg-emerald-500/20 text-emerald-600" },
title: "Quick turnaround",
description:
"Most tasks ship in 48–72 hours without sacrificing quality.",
},
{
id: "live",
imageUrl: "https://hoirqrkdgbmvpwutwuwj-all.supabase.co/storage/v1/object/public/assets/assets/70ea4bbd-c103-404b-bff1-cab817e4f4d6_800w.jpg",
title: "Go live in days",
description:
"From first brief to live campaigns in a week, with tracking and QA handled.",
},
];
export default function Default() {
return <UltraQualityShowcaseGrid cards={sampleCards} />;
}