Bob AI: swap the order of buttons in hero section

This commit is contained in:
2026-02-09 16:03:52 +02:00
parent dfd6e21c36
commit 587bb5ce0a

View File

@@ -108,7 +108,7 @@ const HeroLogoBillboardSplit = ({
</div>
<div className={cls("flex flex-wrap gap-4", buttonContainerClassName)}>
{buttons.slice(0, 4).map((button, index) => (
<Button key={`${button.text}-${index}`} {...getButtonProps(button, index, theme.defaultButtonVariant, buttonClassName, buttonTextClassName)} />
<Button key={`${button.text}-${index}`} {...getButtonProps(buttons[buttons.length - 1 - index], index, theme.defaultButtonVariant, buttonClassName, buttonTextClassName)} />
))}
</div>
</div>