From 3eb1b81cd951ef1df74f88d37d20611c399b11ca Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Fri, 6 Feb 2026 18:04:48 +0000 Subject: [PATCH] Bob AI: Can you add another button to the hero section tha... --- src/components/sections/hero/HeroSplitDualMedia.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/sections/hero/HeroSplitDualMedia.tsx b/src/components/sections/hero/HeroSplitDualMedia.tsx index e78a588..06d961f 100644 --- a/src/components/sections/hero/HeroSplitDualMedia.tsx +++ b/src/components/sections/hero/HeroSplitDualMedia.tsx @@ -141,7 +141,7 @@ const HeroSplitDualMedia = ({ description={description} tag={tag} tagIcon={tagIcon} - buttons={buttons} + buttons={[...(buttons || []), { href: "#learn-more", label: "Learn More" }]} className={cls("flex flex-col gap-3 md:gap-4 md:hidden", textBoxClassName)} titleClassName={cls("text-7xl 2xl:text-8xl font-medium text-center md:text-left text-balance", titleClassName)} descriptionClassName={cls("max-w-8/10 text-lg md:text-xl leading-[1.2] text-center md:text-left", descriptionClassName)} @@ -156,7 +156,7 @@ const HeroSplitDualMedia = ({ description={description} tag={tag} tagIcon={tagIcon} - buttons={buttons} + buttons={[...(buttons || []), { href: "#learn-more", label: "Learn More" }]} className={cls("hidden md:flex flex-col gap-3 md:gap-4", textBoxClassName)} titleClassName={cls("text-7xl 2xl:text-8xl font-medium text-center md:text-left text-balance", titleClassName)} descriptionClassName={cls("max-w-8/10 text-lg md:text-xl leading-[1.2] text-center md:text-left", descriptionClassName)} -- 2.49.1