Bob AI: add a new button 'Contact Us' in contact section

This commit is contained in:
2026-02-02 10:03:39 +02:00
parent 67f56683a2
commit f46e37c554

View File

@@ -10,6 +10,7 @@ import { cls, shouldUseInvertedText } from "@/lib/utils";
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
import { getButtonProps } from "@/lib/buttonUtils";
import type { AnimationType } from "@/components/text/types";
import { LucidePhoneCall } from "lucide-react";
export interface InputField {
name: string;
@@ -200,8 +201,11 @@ const ContactSplitForm = ({
ContactSplitForm.displayName = "ContactSplitForm";
// Inserted <button> element with text "Text"
<ContactButton />
// Inserted <button> element with text "Contact Us"
<div className="mt-4">
<button className="bg-primary text-white px-4 py-2 rounded">Contact Us</button>
</div>
export default ContactSplitForm;
const ContactButton = () => (