feat(ui): friendlier wording in the contact form
Deploy to VPS / deploy (push) Has been cancelled

Match the broadened "Contact FLUX Team" CTA — the consultation form read as
engineering-only, which can deter non-technical enquiries.

- Form header: "Engineering Consultation" -> "Get in Touch"
- Subtitle now reassures "our team will get back to you"
- Submit button: "Request Consultation" -> "Send Request"
- Success title: "Consultation Requested" -> "Request Sent"
- Next-steps step 1: "Engineer reviews..." -> "Our team reviews..."

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-08 09:58:13 -05:00
parent 63a896b017
commit b76c14b780
+5 -5
View File
@@ -167,7 +167,7 @@ function SuccessView({ data, ticketId }: { data: ConsultationData; ticketId: str
<div>
<p className="text-[15px] font-medium text-[#1D1D1F] dark:text-[#F5F5F7] mb-1 transition-colors">
Consultation Requested
Request Sent
</p>
{ticketId && (
<p className="text-[11px] font-mono text-[#0066CC] dark:text-[#4DA6FF] mb-2">{ticketId}</p>
@@ -188,7 +188,7 @@ function SuccessView({ data, ticketId }: { data: ConsultationData; ticketId: str
</span>
<div className="flex flex-col gap-2">
{[
"Engineer reviews your AI-prepared brief",
"Our team reviews your AI-prepared brief",
`Custom RF analysis for your ${data.process} process`,
"Proposal with ROI projections and timeline",
].map((step, i) => (
@@ -315,11 +315,11 @@ export default function ConsultationScheduler({ data }: { data: ConsultationData
<Calendar size={13} className="text-[#0066CC] dark:text-[#4DA6FF]" />
</div>
<span className="text-[9px] font-semibold uppercase tracking-widest text-[#0066CC] dark:text-[#4DA6FF]">
Engineering Consultation
Get in Touch
</span>
</div>
<p className="text-[12px] text-[#86868B] dark:text-[#A1A1A6] mb-4 leading-relaxed">
Your conversation details are pre-loaded. Just add your contact info.
Your conversation details are pre-loaded. Just add your contact info and our team will get back to you.
</p>
<InsightsCard data={data} />
@@ -416,7 +416,7 @@ export default function ConsultationScheduler({ data }: { data: ConsultationData
Sending...
</>
) : (
<>Request Consultation <ArrowRight size={14} /></>
<>Send Request <ArrowRight size={14} /></>
)}
</motion.button>