Merge version_5 into main
Merge version_5 into main
This commit was merged in pull request #23.
This commit is contained in:
@@ -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"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user