feat: add row height control to BentoGrid and remove gradient blobs from StackSection

This commit is contained in:
2025-09-18 20:26:37 +02:00
parent cde6c90033
commit bf78cde2d8
3 changed files with 47 additions and 41 deletions

View File

@@ -78,7 +78,8 @@ export function BentoReviews() {
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: false, margin: '0px 0px -100px 0px' }}
transition={{ duration: 0.8, delay: 0.3 + i * 0.1 }}
className={cn(i === 3 || i === 6 ? "md:col-span-2" : "", "h-full")}
className={cn(i === 3 || i === 6 ? "md:col-span-2" : "")}
rowHeight={i >= 3 ? "h-[22rem]" : ""}
title={item.title}
subtitle={item.subtitle}
description={item.description}