From db7affb3a0668d03853973713943b76923f28f9a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 21 May 2026 00:29:04 +0000 Subject: [PATCH] Add testimonial card to HeroBillboardBrand component --- .../sections/hero/HeroBillboardBrand.tsx | 21 +++++++++++++++++++ src/pages/HomePage.tsx | 6 ++++++ 2 files changed, 27 insertions(+) diff --git a/src/components/sections/hero/HeroBillboardBrand.tsx b/src/components/sections/hero/HeroBillboardBrand.tsx index 2fdf408..0e6bc80 100644 --- a/src/components/sections/hero/HeroBillboardBrand.tsx +++ b/src/components/sections/hero/HeroBillboardBrand.tsx @@ -10,6 +10,12 @@ type HeroBillboardBrandProps = { description: string; primaryButton: { text: string; href: string }; secondaryButton: { text: string; href: string }; + testimonial?: { + quote: string; + author: string; + authorTitle: string; + imageSrc: string; + }; } & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); const HeroBillboardBrand = ({ @@ -19,6 +25,7 @@ const HeroBillboardBrand = ({ secondaryButton, imageSrc, videoSrc, + testimonial, }: HeroBillboardBrandProps) => { return (
@@ -39,6 +46,20 @@ const HeroBillboardBrand = ({