Bob AI: add a third button to hero with text 'Learn More'
This commit is contained in:
@@ -107,9 +107,10 @@ const HeroLogoBillboardSplit = ({
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className={cls("flex flex-wrap gap-4", buttonContainerClassName)}>
|
<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={`${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>
|
</div>
|
||||||
<div className="relative w-full flex">
|
<div className="relative w-full flex">
|
||||||
|
|||||||
Reference in New Issue
Block a user