4 Commits

Author SHA1 Message Date
4287f3c4f8 Update src/app/page.tsx 2026-02-07 16:53:12 +00:00
61bee961cb Merge version_2 into main
Merge version_2 into main
2026-02-07 16:52:31 +00:00
9aad78f5be Bob AI: Add an image to the CTA section card 2026-02-07 16:51:57 +00:00
4de6c6b343 Bob AI: Editing h2 ([data-webild-id="webild-1770482562847-... 2026-02-07 16:45:48 +00:00

View File

@@ -8,6 +8,7 @@ import { getButtonProps } from "@/lib/buttonUtils";
import { useTheme } from "@/providers/themeProvider/ThemeProvider"; import { useTheme } from "@/providers/themeProvider/ThemeProvider";
import type { ButtonConfig } from "@/types/button"; import type { ButtonConfig } from "@/types/button";
import type { InvertedBackground } from "@/providers/themeProvider/config/constants"; import type { InvertedBackground } from "@/providers/themeProvider/config/constants";
import Image from "next/image";
type AnimationType = "entrance-slide" | "reveal-blur" | "background-highlight"; 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"> <div className="absolute inset-0 w-full h-full z-0 rounded-theme-capped overflow-hidden">
<HeroBackgrounds {...background} /> <HeroBackgrounds {...background} />
</div> </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>
</div> </div>
</section> </section>