diff --git a/src/components/ui/AiTriggerButton.tsx b/src/components/ui/AiTriggerButton.tsx index 45fddc2..9683277 100644 --- a/src/components/ui/AiTriggerButton.tsx +++ b/src/components/ui/AiTriggerButton.tsx @@ -2,19 +2,22 @@ import { ArrowUpRight } from "lucide-react"; -// 1. El botón principal (Contact Engineering) +// 1. El botón principal (Contact FLUX Team) +// Broadened from "Contact FLUX Engineering" so it reads as an invitation for +// ANY enquiry — pricing, general questions, a demo, partnerships — not only +// technical/engineering consultations. export function AiContactButton() { - const handleContactEngineering = () => { - const prompt = "I am ready to optimize my production. I would like to schedule a technical consultation with FLUX Engineering to explore custom RF solutions and calculate my ROI."; + const handleContact = () => { + const prompt = "I'd like to get in touch with the FLUX team. I have a few questions and would like to explore how FLUX can help — whether that's energy savings, a custom solution, pricing, availability, or just learning more."; window.dispatchEvent(new CustomEvent("flux:trigger-ai", { detail: { prompt } })); }; return ( - ); } diff --git a/src/lib/siteSettingsTypes.ts b/src/lib/siteSettingsTypes.ts index 81ba65a..c94569a 100644 --- a/src/lib/siteSettingsTypes.ts +++ b/src/lib/siteSettingsTypes.ts @@ -48,7 +48,7 @@ export const DEFAULT_FOOTER: FooterSettings = { ctaTitle1: "Ready to optimize", ctaTitle2: "your production?", ctaSubtitle: - "Connect with our engineering team to calculate your ROI and explore custom RF solutions.", + "Connect with our team to calculate your ROI, explore solutions, or simply ask a question.", hqAddress: "Via Benedetto Marcello 32", hqCity: "36060 Romano d'Ezzelino", hqRegion: "Vicenza",