Category Previews 01
Category Previews 01 é um componente para React e Tailwind CSS, da biblioteca Bund UI, com licença MIT. Copia e cola no teu projeto.
Bund UI
MIT
other
O que é
Category Previews 01 é um componente para React e Tailwind CSS, da biblioteca Bund UI, com licença MIT. Copia e cola no teu projeto.
Como usar
Abre o componente no catálogo, carrega em copiar, e cola no teu projeto. O prompt copiado leva o código e as regras para o teu agente o reproduzir sem alterar nada.
Cinco cópias grátis por mês. Sem cartão.
Não precisa de pacotes além do que o projeto já tem
Licença
Este componente vem de Bund UI e é redistribuído sob a licença MIT, que permite uso comercial. O aviso de copyright viaja com o código.
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>
);
}