Merge version_2_1777296603467 into main #1

Merged
bender merged 1 commits from version_2_1777296603467 into main 2026-04-27 13:30:47 +00:00

View File

@@ -2,6 +2,7 @@ import TextAnimation from "@/components/ui/TextAnimation";
import GridOrCarousel from "@/components/ui/GridOrCarousel";
import Button from "@/components/ui/Button";
import ScrollReveal from "@/components/ui/ScrollReveal";
import { cls } from "@/lib/utils";
type FeatureItem = {
title: string;
@@ -59,8 +60,8 @@ const FeaturesStatisticsCards = ({
<ScrollReveal variant="slide-up">
<GridOrCarousel>
{items.map((item) => (
<div key={item.title} className="flex flex-col h-full card rounded">
{items.map((item, index) => (
<div key={item.title} className={cls("flex flex-col h-full card rounded", index === 1 && "!bg-purple-600 !bg-none")}>
<div className="flex flex-col flex-1 gap-10 p-5">
<div className="flex flex-col gap-1">
<h3 className="text-2xl md:text-3xl font-medium leading-tight truncate">{item.title}</h3>
@@ -84,4 +85,4 @@ const FeaturesStatisticsCards = ({
);
};
export default FeaturesStatisticsCards;
export default FeaturesStatisticsCards;