1 Commits

Author SHA1 Message Date
72f715ac13 Bob AI: [Block: hero-logo|Hero Logo|/blocks/hero/heroLogo.... 2026-02-04 14:51:19 +02:00

View File

@@ -7,6 +7,7 @@ import HeroBackgrounds, { type HeroBackgroundVariantProps } from "@/components/b
import { cls } from "@/lib/utils";
import { Plus } from "lucide-react";
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
import heroLogoSvg from "@/assets/images/hero-logo.svg";
type HeroLogoBillboardBackgroundProps = Extract<
HeroBackgroundVariantProps,
@@ -86,7 +87,7 @@ const HeroLogoBillboard = ({
{logoText}
</FillWidthText>
</div>
<div className="relative w-full md:w-1/2" >
<div className="relative w-full md:w-1/2">
<TextAnimation
type={theme.defaultTextAnimation}
text={description}
@@ -134,6 +135,9 @@ const HeroLogoBillboard = ({
</div>
)}
</div>
<div className="w-full flex justify-center items-center mt-10">
<img src={heroLogoSvg} alt="Hero Logo" className="w-64 h-auto" />
</div>
</section>
);
};