From 68698f7b269ab6f92c6eb8542221ebc516f725d9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 01:35:13 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index fb95a82..ad80e1d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,7 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Heart, Sparkles } from 'lucide-react'; +import { Heart, Sparkles, Paw } from 'lucide-react'; export default function LandingPage() { return ( @@ -97,22 +97,22 @@ export default function LandingPage() { animationType="slide-up" plans={[ { - id: "standard", badge: "Standard Walk", badgeIcon: undefined, - price: 25, subtitle: "Perfect for daily exercise", buttons: [{ text: "Book Now", href: "#contact" }], + id: "standard", badge: "Standard Walk", badgeIcon: Paw, + price: "$25", subtitle: "Perfect for daily exercise", buttons: [{ text: "Book Now", href: "#contact" }], features: [ "30-minute walk", "Local neighborhood routes", "Photo updates", "GPS tracking", "Personalized care notes" ] }, { id: "adventure", badge: "Adventure Walk", badgeIcon: Sparkles, - price: 40, subtitle: "For the active pup", buttons: [{ text: "Book Now", href: "#contact" }], + price: "$40", subtitle: "For the active pup", buttons: [{ text: "Book Now", href: "#contact" }], features: [ "60-minute walk", "Park or trail exploration", "High-energy activities", "Premium photo updates", "Real-time GPS tracking", "Detailed activity report" ] }, { id: "puppy", badge: "Puppy Care", badgeIcon: Heart, - price: 30, subtitle: "Extra attention for young dogs", buttons: [{ text: "Book Now", href: "#contact" }], + price: "$30", subtitle: "Extra attention for young dogs", buttons: [{ text: "Book Now", href: "#contact" }], features: [ "30-45 minute walk", "Gentle socialization", "Training reinforcement", "Frequent breaks", "Safe environment focus", "Parent communication" ] -- 2.49.1