diff --git a/src/app/page.tsx b/src/app/page.tsx index 2216849..be84889 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,8 +11,8 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import { Award, Smile, Users } from "lucide-react"; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import { Award, Smile, Users, Star } from "lucide-react"; export default function LandingPage() { return ( @@ -32,26 +32,12 @@ export default function LandingPage() {
@@ -130,30 +77,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} features={[ - { - id: "s1", - title: "Lawn Care & Mowing", - tags: [ - "Maintenance", - ], - imageSrc: "http://img.b2bpic.net/free-photo/worker-is-cutting-grass-with-hose_7502-9835.jpg", - }, - { - id: "s2", - title: "Stone & Hardscape", - tags: [ - "Design", - ], - imageSrc: "http://img.b2bpic.net/free-photo/stone-surface-with-grass_23-2147625863.jpg", - }, - { - id: "s3", - title: "Irrigation Systems", - tags: [ - "Tech", - ], - imageSrc: "http://img.b2bpic.net/free-photo/close-up-gardener-watering-succulent-plant_23-2147844312.jpg", - }, + { id: "s1", title: "Lawn Care & Mowing", tags: ["Maintenance"], imageSrc: "http://img.b2bpic.net/free-photo/worker-is-cutting-grass-with-hose_7502-9835.jpg" }, + { id: "s2", title: "Stone & Hardscape", tags: ["Design"], imageSrc: "http://img.b2bpic.net/free-photo/stone-surface-with-grass_23-2147625863.jpg" }, + { id: "s3", title: "Irrigation Systems", tags: ["Tech"], imageSrc: "http://img.b2bpic.net/free-photo/close-up-gardener-watering-succulent-plant_23-2147844312.jpg" }, ]} title="Professional Services" description="Comprehensive landscape solutions tailored to your unique property requirements." @@ -167,27 +93,9 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} metrics={[ - { - id: "m1", - value: "15+", - title: "Years Experience", - description: "Expertise you can trust", - icon: Award, - }, - { - id: "m2", - value: "500+", - title: "Happy Clients", - description: "Restored outdoor beauty", - icon: Users, - }, - { - id: "m3", - value: "99%", - title: "Satisfied Rate", - description: "Excellence every time", - icon: Smile, - }, + { id: "m1", value: "15+", title: "Years Experience", description: "Expertise you can trust", icon: Award }, + { id: "m2", value: "500+", title: "Happy Clients", description: "Restored outdoor beauty", icon: Users }, + { id: "m3", value: "99%", title: "Satisfied Rate", description: "Excellence every time", icon: Smile }, ]} title="Results Driven" description="Quality backed by numbers and years of excellence." @@ -200,55 +108,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} plans={[ - { - id: "basic", - tag: "Essentials", - price: "$150", - period: "/mo", - description: "Basic maintenance package.", - button: { - text: "Get Started", - }, - featuresTitle: "Included", - features: [ - "Mowing", - "Edging", - "Leaf Cleanup", - ], - }, - { - id: "pro", - tag: "Popular", - price: "$300", - period: "/mo", - description: "Full service coverage.", - button: { - text: "Get Started", - }, - featuresTitle: "Included", - features: [ - "Mowing", - "Edging", - "Pruning", - "Fertilizing", - ], - }, - { - id: "premium", - tag: "Ultimate", - price: "$500", - period: "/mo", - description: "Total landscape transformation.", - button: { - text: "Get Started", - }, - featuresTitle: "Included", - features: [ - "Everything in Pro", - "Irrigation Repair", - "Seasonal Planting", - ], - }, + { id: "basic", tag: "Essentials", price: "$150", period: "/mo", description: "Basic maintenance package.", button: { text: "Get Started" }, featuresTitle: "Included", features: ["Mowing", "Edging", "Leaf Cleanup"] }, + { id: "pro", tag: "Popular", price: "$300", period: "/mo", description: "Full service coverage.", button: { text: "Get Started" }, featuresTitle: "Included", features: ["Mowing", "Edging", "Pruning", "Fertilizing"] }, + { id: "premium", tag: "Ultimate", price: "$500", period: "/mo", description: "Total landscape transformation.", button: { text: "Get Started" }, featuresTitle: "Included", features: ["Everything in Pro", "Irrigation Repair", "Seasonal Planting"] }, ]} title="Tailored Plans" description="Choose a plan that fits your lawn's specific needs." @@ -256,49 +118,16 @@ export default function LandingPage() {