Category Previews 01
Category Previews 01 is a React and Tailwind CSS component from Bund UI, licensed MIT. Copy it and paste it into your project.
Bund UI
MIT
other
What it is
Category Previews 01 is a React and Tailwind CSS component from Bund UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from Bund UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Category Previews 01
const callouts = [
{
name: "Desk and Office",
description: "Work from home accessories",
imageSrc:
"https://tailwindcss.com/plus-assets/img/ecommerce-images/home-page-02-edition-01.jpg",
imageAlt:
"Desk with leather desk pad, walnut desk organizer, wireless keyboard and mouse, and porcelain mug.",
href: "#"
},
{
name: "Self-Improvement",
description: "Journals and note-taking",
imageSrc:
"https://tailwindcss.com/plus-assets/img/ecommerce-images/home-page-02-edition-02.jpg",
imageAlt:
"Wood table with porcelain mug, leather journal, brass pen, leather key ring, and a houseplant.",
href: "#"
},
{
name: "Travel",
description: "Daily commute essentials",
imageSrc:
"https://tailwindcss.com/plus-assets/img/ecommerce-images/home-page-02-edition-03.jpg",
imageAlt: "Collection of four insulated travel bottles on wooden shelf.",
href: "#"
}
];
export default function Example() {
return (
<section className="py-10 lg:py-20">
<div className="container mx-auto px-4">
<header>
<h2 className="font-heading text-3xl">Collections</h2>
</header>
<div className="mt-6 space-y-12 lg:grid lg:grid-cols-3 lg:space-y-0 lg:gap-x-6">
{callouts.map((callout) => (
<div key={callout.name} className="group relative">
<img
alt={callout.imageAlt}
src={callout.imageSrc}
className="w-full object-cover transition-opacity group-hover:opacity-75 max-sm:h-80 sm:aspect-2/1 lg:aspect-square"
/>
<h3 className="text-muted-foreground mt-4 text-sm">
<a href={callout.href}>
<span className="absolute inset-0" />
{callout.name}
</a>
</h3>
<p className="text-base font-semibold text-gray-900">{callout.description}</p>
</div>
))}
</div>
</div>
</section>
);
}