Bob AI: add a new button 'Contact Us' in contact section
This commit is contained in:
@@ -10,6 +10,7 @@ import { cls, shouldUseInvertedText } from "@/lib/utils";
|
|||||||
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
|
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import { getButtonProps } from "@/lib/buttonUtils";
|
import { getButtonProps } from "@/lib/buttonUtils";
|
||||||
import type { AnimationType } from "@/components/text/types";
|
import type { AnimationType } from "@/components/text/types";
|
||||||
|
import { LucidePhoneCall } from "lucide-react";
|
||||||
|
|
||||||
export interface InputField {
|
export interface InputField {
|
||||||
name: string;
|
name: string;
|
||||||
@@ -200,8 +201,11 @@ const ContactSplitForm = ({
|
|||||||
|
|
||||||
ContactSplitForm.displayName = "ContactSplitForm";
|
ContactSplitForm.displayName = "ContactSplitForm";
|
||||||
|
|
||||||
// Inserted <button> element with text "Text"
|
// Inserted <button> element with text "Contact Us"
|
||||||
<ContactButton />
|
<div className="mt-4">
|
||||||
|
<button className="bg-primary text-white px-4 py-2 rounded">Contact Us</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
export default ContactSplitForm;
|
export default ContactSplitForm;
|
||||||
|
|
||||||
const ContactButton = () => (
|
const ContactButton = () => (
|
||||||
|
|||||||
Reference in New Issue
Block a user