1 Commits

Author SHA1 Message Date
95f75302a1 Bob AI: I don't like the hero section can you switch it 2026-02-04 02:12:09 +00:00

View File

@@ -12,6 +12,7 @@ import { useTheme } from "@/providers/themeProvider/ThemeProvider";
import type { ButtonConfig } from "@/components/cardStack/types";
import CardStack from "@/components/cardStack/CardStack";
import SectionTitle from "@/components/sectionTitle/SectionTitle";
import FillWidthImage from "@/components/shared/FillWidthImage/FillWidthImage";
type HeroLogoBillboardBackgroundProps = Extract<
HeroBackgroundVariantProps,
@@ -129,23 +130,19 @@ const HeroLogoBillboard = ({
<Plus className="h-[var(--text-sm)] w-auto text-foreground" />
</div>
<div className="relative z-1 p-0">
<MediaContent
imageSrc={imageSrc}
videoSrc={videoSrc}
imageAlt={imageAlt}
videoAriaLabel={videoAriaLabel}
imageClassName={cls("z-1 rounded-none! aspect-square md:aspect-video", imageClassName)}
<FillWidthImage
src={imageSrc}
alt={imageAlt}
className={cls("z-1 rounded-none! aspect-square md:aspect-video", imageClassName)}
/>
</div>
</div>
) : (
<div className={cls("w-full overflow-hidden rounded-theme-capped card p-4", mediaWrapperClassName)}>
<MediaContent
imageSrc={imageSrc}
videoSrc={videoSrc}
imageAlt={imageAlt}
videoAriaLabel={videoAriaLabel}
imageClassName={cls("z-1 aspect-square md:aspect-video", imageClassName)}
<FillWidthImage
src={imageSrc}
alt={imageAlt}
className={cls("z-1 aspect-square md:aspect-video", imageClassName)}
/>
</div>
)}