Update src/app/pricing/page.tsx

This commit is contained in:
2026-02-12 17:01:41 +00:00
parent 2cb3a41899
commit 6f0508fd4f

View File

@@ -31,8 +31,7 @@ export default function PricingPage() {
{ name: "Devices", id: "/devices" }
]}
button={{
text: "Book a Repair",
href: "/contact"
text: "Book a Repair", href: "/contact"
}}
/>
</div>
@@ -43,53 +42,31 @@ export default function PricingPage() {
description="Clear, honest pricing for premium service. No hidden costs. Just excellence delivered every time."
plans={[
{
id: "1",
price: "Starting at $79",
name: "iPhone Screen Repair",
buttons: [
id: "1", price: "Starting at $79", name: "iPhone Screen Repair", buttons: [
{ text: "Get an Instant Quote", href: "/contact" },
{ text: "Learn More", href: "#" }
],
features: [
"Premium replacement glass",
"Certified installation",
"Warranty protection",
"Same-day service available",
"Data protection guarantee"
"Premium replacement glass", "Certified installation", "Warranty protection", "Same-day service available", "Data protection guarantee"
]
},
{
id: "2",
price: "Starting at $49",
name: "Battery Replacement",
badge: "Most Popular",
badgeIcon: Sparkles,
id: "2", price: "Starting at $49", name: "Battery Replacement", badge: "Most Popular", badgeIcon: Sparkles,
buttons: [
{ text: "Get an Instant Quote", href: "/contact" },
{ text: "Learn More", href: "#" }
],
features: [
"Genuine battery",
"Professional installation",
"Lifetime warranty option",
"Extended device life",
"Performance optimization"
"Genuine battery", "Professional installation", "Lifetime warranty option", "Extended device life", "Performance optimization"
]
},
{
id: "3",
price: "Free",
name: "Diagnostic Check",
buttons: [
id: "3", price: "Free", name: "Diagnostic Check", buttons: [
{ text: "Get an Instant Quote", href: "/contact" },
{ text: "Learn More", href: "#" }
],
features: [
"Comprehensive analysis",
"No obligation",
"Expert assessment",
"Custom repair plan",
"Honest recommendations"
"Comprehensive analysis", "No obligation", "Expert assessment", "Custom repair plan", "Honest recommendations"
]
}
]}
@@ -106,37 +83,22 @@ export default function PricingPage() {
description="Comprehensive solutions for device care and protection. Choose the package that fits your needs."
plans={[
{
id: "4",
price: "$199",
name: "Complete Care Package",
badge: "Best Value",
badgeIcon: Sparkles,
id: "4", price: "$199", name: "Complete Care Package", badge: "Best Value", badgeIcon: Sparkles,
buttons: [
{ text: "Get Started", href: "/contact" },
{ text: "Learn More", href: "#" }
],
features: [
"Screen + battery replacement",
"Full device cleaning",
"Software optimization",
"6-month warranty",
"Priority support"
"Screen + battery replacement", "Full device cleaning", "Software optimization", "6-month warranty", "Priority support"
]
},
{
id: "5",
price: "$299",
name: "Device Restoration",
buttons: [
id: "5", price: "$299", name: "Device Restoration", buttons: [
{ text: "Get Started", href: "/contact" },
{ text: "Learn More", href: "#" }
],
features: [
"Complete device refurbishment",
"New battery & screen",
"Internal cleaning",
"Software reset",
"12-month warranty"
"Complete device refurbishment", "New battery & screen", "Internal cleaning", "Software reset", "12-month warranty"
]
}
]}