Bob AI: add a third button to hero section with text 'Watc...

This commit is contained in:
2026-02-09 16:20:52 +02:00
parent 54db80c573
commit 428be0b689

View File

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