From 865746de69178b72cbafeeec14afad3373738538 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Feb 2026 00:40:00 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3265bf9..e636259 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { Award, CheckCircle, DollarSign, Heart, Shield, ShoppingBag, Star, Zap } from "lucide-react"; +import { Award, CheckCircle, DollarSign, Heart, Shield, ShoppingBag, Sparkles, Star, Zap } from "lucide-react"; export default function LandingPage() { return ( @@ -54,7 +54,6 @@ export default function LandingPage() { imageSrc="https://img.b2bpic.net/free-photo/mockup-mobile-phone-screen_53876-63379.jpg" imageAlt="Premium smartphone in dramatic cinematic lighting" frameStyle="card" - mediaAnimation="slide-up" className="min-h-screen" containerClassName="gap-8" buttonContainerClassName="flex gap-4 justify-center mt-8" @@ -137,19 +136,22 @@ export default function LandingPage() { animationType="slide-up" plans={[ { - id: "screen-repair", badge: "Popular", price: "From $149", subtitle: "iPhone & Samsung screens", buttons: [{ text: "Get Instant Quote", href: "#contact" }], + id: "screen-repair", badge: "Popular", badgeIcon: Sparkles, + price: "From $149", subtitle: "iPhone & Samsung screens", buttons: [{ text: "Get Instant Quote", href: "#contact" }], features: [ "Tempered glass replacement", "Same-day service available", "Lifetime warranty included", "Data fully preserved", "Certified technicians" ] }, { - id: "battery-replacement", badge: "Best Value", price: "From $79", subtitle: "Restore peak performance", buttons: [{ text: "Get Instant Quote", href: "#contact" }], + id: "battery-replacement", badge: "Best Value", badgeIcon: Zap, + price: "From $79", subtitle: "Restore peak performance", buttons: [{ text: "Get Instant Quote", href: "#contact" }], features: [ "OEM-quality batteries", "30-minute replacement", "100% health guaranteed", "Lifetime warranty", "Certified installation" ] }, { - id: "diagnostic-check", badge: "Start Here", price: "Free", subtitle: "Comprehensive device analysis", buttons: [{ text: "Book Diagnostic", href: "#contact" }], + id: "diagnostic-check", badge: "Start Here", badgeIcon: Zap, + price: "Free", subtitle: "Comprehensive device analysis", buttons: [{ text: "Book Diagnostic", href: "#contact" }], features: [ "Full device inspection", "Hardware diagnostics", "Performance analysis", "Detailed repair estimate", "No obligation consultation" ] @@ -217,7 +219,7 @@ export default function LandingPage() { id: "6", name: "James Thompson", role: "Executive", company: "Fortune 500", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/senior-businessman-with-arms-crossed-outside-modern-office-building_1139-1074.jpg", imageAlt: "James Thompson" } - ] + ]} /> -- 2.49.1