From 2e84b72394d32346966e2282839ac8cb16fa86cb Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Mon, 11 May 2026 14:43:36 +0530 Subject: [PATCH] fix: increase vertical offset between featured agent cards so prior card content stays visible --- src/components/home/FeaturesSection.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/home/FeaturesSection.tsx b/src/components/home/FeaturesSection.tsx index e783955..d4ed62f 100644 --- a/src/components/home/FeaturesSection.tsx +++ b/src/components/home/FeaturesSection.tsx @@ -105,10 +105,10 @@ export function FeaturesSection({ content }: { content?: FeaturesContent }) { {/* Right Side - Agent Cards (Desktop) */} {agents.length > 0 && ( -
+
{agents[0] && } - {agents[1] && } - {agents[2] && } + {agents[1] && } + {agents[2] && }
)}