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 = ({