Bob AI: Add an image to the CTA section card

This commit is contained in:
2026-02-07 16:51:57 +00:00
parent 4de6c6b343
commit 9aad78f5be

View File

@@ -8,6 +8,7 @@ import { getButtonProps } from "@/lib/buttonUtils";
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
import type { ButtonConfig } from "@/types/button";
import type { InvertedBackground } from "@/providers/themeProvider/config/constants";
import Image from "next/image";
type AnimationType = "entrance-slide" | "reveal-blur" | "background-highlight";
@@ -104,6 +105,14 @@ const ContactText = ({
<div className="absolute inset-0 w-full h-full z-0 rounded-theme-capped overflow-hidden">
<HeroBackgrounds {...background} />
</div>
<div className="absolute bottom-0 right-0 w-1/2 h-1/2">
<Image
src="https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1920&q=80"
alt="Contact Image"
fill
className="object-cover rounded-theme-capped"
/>
</div>
</div>
</div>
</section>