Bob AI: [Block: hero-logo|Hero Logo|/blocks/hero/heroLogo....

This commit is contained in:
2026-02-04 14:51:19 +02:00
parent 8503f92901
commit 72f715ac13

View File

@@ -7,6 +7,7 @@ import HeroBackgrounds, { type HeroBackgroundVariantProps } from "@/components/b
import { cls } from "@/lib/utils"; import { cls } from "@/lib/utils";
import { Plus } from "lucide-react"; import { Plus } from "lucide-react";
import { useTheme } from "@/providers/themeProvider/ThemeProvider"; import { useTheme } from "@/providers/themeProvider/ThemeProvider";
import heroLogoSvg from "@/assets/images/hero-logo.svg";
type HeroLogoBillboardBackgroundProps = Extract< type HeroLogoBillboardBackgroundProps = Extract<
HeroBackgroundVariantProps, HeroBackgroundVariantProps,
@@ -134,6 +135,9 @@ const HeroLogoBillboard = ({
</div> </div>
)} )}
</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> </section>
); );
}; };