From afe028f7c2e0f6454361acc8459143e0bf369843 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Mon, 9 Feb 2026 06:08:20 +0000 Subject: [PATCH] Bob AI: Fix the buttons on the hero section - right now th... --- src/components/sections/hero/HeroBillboard.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/sections/hero/HeroBillboard.tsx b/src/components/sections/hero/HeroBillboard.tsx index c9452c7..4e1f49a 100644 --- a/src/components/sections/hero/HeroBillboard.tsx +++ b/src/components/sections/hero/HeroBillboard.tsx @@ -113,7 +113,10 @@ const HeroBillboard = ({ description={description} tag={tag} tagIcon={tagIcon} - buttons={buttons} + buttons={buttons?.map((button, index) => ({ + ...button, + label: index === 0 ? 'get out of here' : index === 1 ? 'apply to be a member' : button.label, + }))} avatars={avatars} avatarText={avatarText} avatarsAbove={true}