diff --git a/src/app/page.tsx b/src/app/page.tsx index 445fde6..a2f5efa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Sparkles, Shield, Award } from 'lucide-react'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; @@ -30,24 +31,13 @@ export default function LandingPage() { @@ -56,16 +46,10 @@ export default function LandingPage() { logoText="Lories Pet Palace" description="Where Every Dog Is Treated Like Royalty. Over 20 years of expert grooming in Clovis for all breeds, sizes, and temperaments—including the anxious and difficult dogs others turn away." buttons={[ - { - text: "Book an Appointment", - href: "#contact", - }, - { - text: "See Services", - href: "#services", - }, + { text: "Book an Appointment", href: "#contact" }, + { text: "See Services", href: "#services" }, ]} - imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-pet-grooming-business-card-template_23-2150037912.jpg?_wi=1" + imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-pet-grooming-business-card-template_23-2150037912.jpg" imageAlt="Luxury dog grooming at Lories Pet Palace" /> @@ -74,19 +58,9 @@ export default function LandingPage() { @@ -97,26 +71,14 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Boutique Grooming", - description: "Tailored styling for all breeds in a low-stress, calm environment.", - buttonIcon: "Sparkles", - imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-pet-grooming-business-card-template_23-2150037912.jpg?_wi=2", - imageAlt: "luxury dog grooming studio interior", - }, + title: "Boutique Grooming", description: "Tailored styling for all breeds in a low-stress, calm environment.", buttonIcon: Sparkles, + imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-pet-grooming-business-card-template_23-2150037912.jpg", imageAlt: "luxury dog grooming studio interior"}, { - title: "Anxious Pet Specialists", - description: "Patient, one-on-one attention for senior dogs and those with past trauma.", - buttonIcon: "Shield", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-her-beautiful-dog_1157-36168.jpg", - imageAlt: "experienced pet groomer smiling", - }, + title: "Anxious Pet Specialists", description: "Patient, one-on-one attention for senior dogs and those with past trauma.", buttonIcon: Shield, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-her-beautiful-dog_1157-36168.jpg", imageAlt: "experienced pet groomer smiling"}, { - title: "Precision Care", - description: "Expert hands that handle difficult temperaments with kindness and skill.", - buttonIcon: "Award", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-woman-brushing-dog_23-2149652656.jpg", - imageAlt: "calm dog being groomed gently", - }, + title: "Precision Care", description: "Expert hands that handle difficult temperaments with kindness and skill.", buttonIcon: Award, + imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-woman-brushing-dog_23-2149652656.jpg", imageAlt: "calm dog being groomed gently"}, ]} title="Specialized Grooming Services" description="We specialize in personalized care for every temperament, ensuring even the most anxious pets feel safe and comfortable in our boutique setting." @@ -130,55 +92,16 @@ export default function LandingPage() { useInvertedBackground={true} plans={[ { - id: "p1", - badge: "Essential", - price: "$65+", - subtitle: "Bath, Brush & Trim", - buttons: [ - { - text: "Book Now", - href: "#contact", - }, - ], - features: [ - "Luxury Bath", - "Nail Trim", - "Ear Cleaning", - ], + id: "p1", badge: "Essential", price: "$65+", subtitle: "Bath, Brush & Trim", buttons: [{ text: "Book Now", href: "#contact" }], + features: ["Luxury Bath", "Nail Trim", "Ear Cleaning"], }, { - id: "p2", - badge: "Complete", - price: "$95+", - subtitle: "Full Grooming Package", - buttons: [ - { - text: "Book Now", - href: "#contact", - }, - ], - features: [ - "Full Groom", - "Deep Conditioner", - "Teeth Brushing", - ], + id: "p2", badge: "Complete", price: "$95+", subtitle: "Full Grooming Package", buttons: [{ text: "Book Now", href: "#contact" }], + features: ["Full Groom", "Deep Conditioner", "Teeth Brushing"], }, { - id: "p3", - badge: "Royal", - price: "$125+", - subtitle: "Deluxe Wellness Spa", - buttons: [ - { - text: "Book Now", - href: "#contact", - }, - ], - features: [ - "Royal Treatment", - "Senior Care", - "Medicated Soaks", - ], + id: "p3", badge: "Royal", price: "$125+", subtitle: "Deluxe Wellness Spa", buttons: [{ text: "Book Now", href: "#contact" }], + features: ["Royal Treatment", "Senior Care", "Medicated Soaks"], }, ]} title="Transparent & Fair Pricing" @@ -190,31 +113,11 @@ export default function LandingPage() {