2 Commits

Author SHA1 Message Date
afe028f7c2 Bob AI: Fix the buttons on the hero section - right now th... 2026-02-09 06:08:20 +00:00
a5ab6f92e1 Merge version_3 into main
Merge version_3 into main
2026-02-09 06:06:28 +00:00

View File

@@ -113,7 +113,10 @@ const HeroBillboard = ({
description={description} description={description}
tag={tag} tag={tag}
tagIcon={tagIcon} 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} avatars={avatars}
avatarText={avatarText} avatarText={avatarText}
avatarsAbove={true} avatarsAbove={true}