From 1ae8fd9c0d6a4fcea24239eda65f540867cefefd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 13:34:28 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a7c7982..336e0e4 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -122,11 +122,11 @@ export default function ContactPage() { useInvertedBackground={false} plans={[ { - id: "basic", name: "Basic Plan", badge: "Standard", price: "$99", features: ["Basic repairs", "1 hour service", "Expert technician"], + id: "basic", badge: "Standard", price: "$99", features: ["Basic repairs", "1 hour service", "Expert technician"], buttons: [{ text: "Select Plan", href: "#" }] }, { - id: "pro", name: "Professional Plan", badge: "Professional", price: "$199", features: ["Full diagnostics", "2 hour service", "Priority scheduling"], + id: "pro", badge: "Professional", price: "$199", features: ["Full diagnostics", "2 hour service", "Priority scheduling"], buttons: [{ text: "Select Plan", href: "#" }] } ]} @@ -142,15 +142,15 @@ export default function ContactPage() { useInvertedBackground={false} plans={[ { - id: "silver", name: "Silver Membership", badge: "Basic", price: "$44/mo", subtitle: "Basic coverage", features: ["1 service visit/month", "10% discount", "Phone support"], + id: "silver", badge: "Basic", price: "$44/mo", subtitle: "Basic coverage", features: ["1 service visit/month", "10% discount", "Phone support"], buttons: [{ text: "Choose Plan", href: "#" }] }, { - id: "gold", name: "Gold Membership", badge: "Popular", price: "$59/mo", subtitle: "Most popular choice", features: ["2 service visits/month", "15% discount", "Priority booking"], + id: "gold", badge: "Popular", price: "$59/mo", subtitle: "Most popular choice", features: ["2 service visits/month", "15% discount", "Priority booking"], buttons: [{ text: "Choose Plan", href: "#" }] }, { - id: "platinum", name: "Platinum Membership", badge: "Premium", price: "$84/mo", subtitle: "Premium coverage", features: ["Unlimited visits", "20% discount", "24/7 support"], + id: "platinum", badge: "Premium", price: "$84/mo", subtitle: "Premium coverage", features: ["Unlimited visits", "20% discount", "24/7 support"], buttons: [{ text: "Choose Plan", href: "#" }] } ]} @@ -184,6 +184,12 @@ export default function ContactPage() { description="Fill out the form and our team will get back to you within 24 hours." useInvertedBackground={false} buttonText="Send Message" + inputs={[ + { id: "name", label: "Name", type: "text", placeholder: "Your name", required: true }, + { id: "email", label: "Email", type: "email", placeholder: "Your email", required: true }, + { id: "message", label: "Message", type: "textarea", placeholder: "Your message", required: true } + ]} + mediaAnimation="blur-reveal" />