From b2db0f9c8047d04e5f853bc85216021a2c2897e3 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Thu, 5 Feb 2026 08:14:45 +0000 Subject: [PATCH] Bob AI: Editing h1 ([data-webild-id="webild-1770279235209-... --- .../sections/hero/HeroLogoBillboard.tsx | 228 +++++++++--------- 1 file changed, 114 insertions(+), 114 deletions(-) diff --git a/src/components/sections/hero/HeroLogoBillboard.tsx b/src/components/sections/hero/HeroLogoBillboard.tsx index 6db9e54..45a0a42 100644 --- a/src/components/sections/hero/HeroLogoBillboard.tsx +++ b/src/components/sections/hero/HeroLogoBillboard.tsx @@ -32,127 +32,127 @@ type HeroLogoBillboardBackgroundProps = Extract< >; interface HeroLogoBillboardProps { - logoText: string; - description: string; - buttons: ButtonConfig[]; - background: HeroLogoBillboardBackgroundProps; - imageSrc?: string; - videoSrc?: string; - imageAlt?: string; - videoAriaLabel?: string; - frameStyle?: "card" | "browser"; - ariaLabel?: string; - className?: string; - containerClassName?: string; - logoContainerClassName?: string; - logoClassName?: string; - descriptionClassName?: string; - buttonContainerClassName?: string; - buttonClassName?: string; - buttonTextClassName?: string; - mediaWrapperClassName?: string; - imageClassName?: string; - browserBarClassName?: string; - addressBarClassName?: string; + logoText: string; + description: string; + buttons: ButtonConfig[]; + background: HeroLogoBillboardBackgroundProps; + imageSrc?: string; + videoSrc?: string; + imageAlt?: string; + videoAriaLabel?: string; + frameStyle?: "card" | "browser"; + ariaLabel?: string; + className?: string; + containerClassName?: string; + logoContainerClassName?: string; + logoClassName?: string; + descriptionClassName?: string; + buttonContainerClassName?: string; + buttonClassName?: string; + buttonTextClassName?: string; + mediaWrapperClassName?: string; + imageClassName?: string; + browserBarClassName?: string; + addressBarClassName?: string; } const HeroLogoBillboard = ({ - logoText, - description, - buttons, - background, - imageSrc, - videoSrc, - imageAlt = "", - videoAriaLabel = "Hero video", - frameStyle = "card", - ariaLabel = "Hero section", - className = "", - containerClassName = "", - logoContainerClassName = "", - logoClassName = "", - descriptionClassName = "", - buttonContainerClassName = "", - buttonClassName = "", - buttonTextClassName = "", - mediaWrapperClassName = "", - imageClassName = "", - browserBarClassName = "", - addressBarClassName = "", + logoText, + description, + buttons, + background, + imageSrc, + videoSrc, + imageAlt = "", + videoAriaLabel = "Hero video", + frameStyle = "card", + ariaLabel = "Hero section", + className = "", + containerClassName = "", + logoContainerClassName = "", + logoClassName = "", + descriptionClassName = "", + buttonContainerClassName = "", + buttonClassName = "", + buttonTextClassName = "", + mediaWrapperClassName = "", + imageClassName = "", + browserBarClassName = "", + addressBarClassName = "", }: HeroLogoBillboardProps) => { - const theme = useTheme(); + const theme = useTheme(); - return ( -
- -
-
-
- - {logoText} - -
-
- -
-
- {buttons.slice(0, 2).map((button, index) => ( -
-
+ return ( +
+ +
+
+
+ + {logoText} + +
+
+ +
+
+ {buttons.slice(0, 2).map((button, index) => ( +
+
- {frameStyle === "browser" ? ( -
-
-
-
-
-
-
-
-
-
-
-
- -
-
- -
-
- ) : ( -
- -
- )} + {frameStyle === "browser" ? ( +
+
+
+
+
+
+
+
+
+
+
+
+
-
- ); +
+ +
+
+ ) : ( +
+ +
+ )} + +
+ ); }; HeroLogoBillboard.displayName = "HeroLogoBillboard";