Bento Grid

Revolutionize Your Workflow
Integrate artificial intelligence to optimize and automate your daily tasks.
Import
To use the Bento Grid component in your project, import it as follows:
import { BentoGrid, BentoCard } from "@purrfect-ui/components";
Usage
The Bento Grid allows you to divide your content into well-organized sections using a row-and-column-based layout system. Here's an example of basic usage:
Basic Usage
const features = [
{
Icon: () => <span>🏙️</span>,
name: "Future-Ready Infrastructure",
description: "Cutting-edge solutions for smart cities.",
href: "#",
cta: "Learn more",
className: "col-span-3 md:col-span-1 bg-gradient-to-r from-primary/50 to-secondary/50 appearance-none",
background: (
<img
className="w-full h-full pointer-events-none opacity-50 object-cover rounded-lg"
src="/images/demo-bento-grid/neon-image-2.avif"
alt="Neon image preview"
/>
),
},
{
Icon: () => <span>🤖</span>,
name: "Revolutionize Your Workflow",
description: "Integrate artificial intelligence to optimize and automate your daily tasks.",
href: "#",
cta: "Learn more",
className: "col-span-3 md:col-span-2 bg-gradient-to-r from-primary/50 to-secondary/50 appearance-none",
background: (
<img
className="w-full h-full pointer-events-none opacity-50 object-cover rounded-lg"
src="/images/demo-bento-grid/neon-image-3.webp"
alt="Neon image preview"
/>
),
},
{
Icon: () => <span>📡</span>,
name: "Analyze the Unseen",
description: "Unlock the hidden patterns in your data with next-gen analytics tools.",
href: "#",
cta: "Learn more",
className: "col-span-3 md:col-span-2 bg-gradient-to-r from-primary/50 to-secondary/50 appearance-none",
background: (
<img
className="w-full h-full pointer-events-none opacity-50 object-cover rounded-lg"
src="/images/demo-bento-grid/neon-image-4.webp"
alt="Neon image preview"
/>
),
},
{
Icon: () => <span>🌐</span>,
name: "Work Beyond Borders",
description: "Tools for productivity anywhere.",
className: "col-span-3 md:col-span-1 bg-gradient-to-r from-primary/50 to-secondary/50 appearance-none",
href: "#",
cta: "Learn more",
background: (
<img
className="w-full h-full pointer-events-none opacity-50 object-cover rounded-lg"
src="/images/demo-bento-grid/neon-image-5.webp"
alt="Neon image preview"
/>
),
},
];
export function BentoDemo() {
return (
<BentoGrid>
{features.map((feature, idx) => (
<BentoCard key={idx} {...feature} />
))}
</BentoGrid>
);
}
Key Features
-
Complete flexibility: Easily configure rows and columns, including both dynamic and fixed sizes.
-
Responsive design: The grid automatically adapts to different screen sizes, ensuring a seamless visual experience across devices.
-
Effortless integration: Seamlessly integrates with your application's styles and themes, supporting advanced layout configurations.