Bob AI: Can you change the button style to something else ...

This commit is contained in:
2026-02-04 14:21:36 +00:00
parent 06bebcebe6
commit 69437ed2e7

View File

@@ -6,6 +6,7 @@ import { cls } from "@/lib/utils";
import type { LucideIcon } from "lucide-react";
import type { ButtonConfig } from "@/types/button";
import type { InvertedBackground } from "@/providers/themeProvider/config/constants";
import Button from "@/components/Button";
type ContactCTABackgroundProps = Extract<
HeroBackgroundVariantProps,
@@ -86,8 +87,8 @@ const ContactCTA = ({
descriptionClassName={cls("text-base md:text-lg leading-[1.2]", descriptionClassName)}
tagClassName={cls("px-3 py-1 text-sm rounded-theme card text-foreground inline-flex items-center gap-2 mb-3", tagClassName)}
buttonContainerClassName={cls("flex flex-wrap gap-4 mt-3", buttonContainerClassName)}
buttonClassName={buttonClassName}
buttonTextClassName={buttonTextClassName}
buttonClassName={cls("bg-primary text-foreground hover:bg-primary-hover", buttonClassName)}
buttonTextClassName={cls("text-sm font-medium", buttonTextClassName)}
center={true}
/>
</div>