1 Commits

Author SHA1 Message Date
f975edab56 Bob AI: auto-fix build error (module_not_found) 2026-02-04 16:48:55 +02:00

View File

@@ -7,7 +7,6 @@ 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,
@@ -136,7 +135,7 @@ const HeroLogoBillboard = ({
)}
</div>
<div className="w-full flex justify-center items-center mt-10">
<img src={heroLogoSvg} alt="Hero Logo" className="w-64 h-auto" />
<div className="w-64 h-auto bg-gray-300"></div>
</div>
</section>
);