Bob AI: add a third button to hero with text 'Learn More'

This commit is contained in:
2026-02-09 16:08:04 +02:00
parent 587bb5ce0a
commit 662b811cc6

View File

@@ -107,9 +107,10 @@ const HeroLogoBillboardSplit = ({
/>
</div>
<div className={cls("flex flex-wrap gap-4", buttonContainerClassName)}>
{buttons.slice(0, 4).map((button, index) => (
{buttons.slice(0, 5).map((button, index) => (
<Button key={`${button.text}-${index}`} {...getButtonProps(buttons[buttons.length - 1 - index], index, theme.defaultButtonVariant, buttonClassName, buttonTextClassName)} />
))}
<Button key="learn-more" {...getButtonProps({ text: 'Learn More', href: '#' }, buttons.length, theme.defaultButtonVariant, buttonClassName, buttonTextClassName)} />
</div>
</div>
<div className="relative w-full flex">