Components
Loading preview...
A bento grid of cards with a feature card and smaller cards below. Minimal design and dotted backgrounds.
@shadcnblockscom
npx shadcn@latest add https://21st.dev/r/shadcnblockscom/casestudy-5import { Casestudy5 } from "@/components/ui/casestudy-5";
const DemoOne = () => {
return (
<Casestudy5 featuredCasestudy={{
logo: "https://shadcnblocks.com/images/block/block-1.svg",
company: "Acme",
tags: "ARTIFICIAL INTELLIGENCE / ENTERPRISE SOLUTIONS",
title: "Workflow Automation for the Digital Age.",
subtitle: "How to automate your workflow with AI.",
image: "https://shadcnblocks.com/images/block/placeholder-1.svg",
link: "https://shadcnblocks.com",
}}
casestudies={[
{
logo: "https://shadcnblocks.com/images/block/block-2.svg",
company: "Super",
tags: "DATA MIGRATION / SOFTWARE SOLUTIONS",
title: "Enhance data migration with AI.",
subtitle: "A data migration platform toward a data-driven future.",
image: "",
link: "https://shadcnblocks.com",
},
{
logo: "https://shadcnblocks.com/images/block/block-3.svg",
company: "Advent",
tags: "ARTIFICIAL INTELLIGENCE / DATA SOLUTIONS",
title: "Strategic AI for a future-proof business.",
subtitle: "Mastering AI for more efficient operations.",
image: "",
link: "https://shadcnblocks.com",
},
]}
/>
);
};
export { DemoOne };