diff --git a/src/app/page.tsx b/src/app/page.tsx index 3b8ae02..b3ea95f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCar import FaqBase from "@/components/sections/faq/FaqBase"; import ContactText from "@/components/sections/contact/ContactText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Heart, Sparkles, CheckCircle, HelpCircle, Paw, House, Users, Check } from "lucide-react"; +import { Heart, Sparkles, CheckCircle, HelpCircle, House, Users, Check } from "lucide-react"; import Link from "next/link"; export default function HomePage() { @@ -54,11 +54,8 @@ export default function HomePage() { buttonAnimation="slide-up" background={{ variant: "radial-gradient" }} dashboard={{ - title: "Animal Care Hub", - logoIcon: Paw, - imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-retro-landing-page-design_23-2150005993.jpg", - searchPlaceholder: "Search by pet type or name...", - buttons: [ + title: "Animal Care Hub", logoIcon: House, + imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-retro-landing-page-design_23-2150005993.jpg", searchPlaceholder: "Search by pet type or name...", buttons: [ { text: "Browse Pets", href: "/our-pets" }, { text: "Schedule Visit", href: "/contact" }, ], @@ -69,46 +66,32 @@ export default function HomePage() { ], stats: [ { - title: "Pets Adopted", - values: [245, 312, 389], - description: "Happy homes this year", - }, + title: "Pets Adopted", values: [245, 312, 389], + description: "Happy homes this year"}, { - title: "Active Animals", - values: [48, 52, 61], - description: "Waiting for families", - }, + title: "Active Animals", values: [48, 52, 61], + description: "Waiting for families"}, { - title: "Team Members", - values: [12, 15, 18], - description: "Dedicated caregivers", - }, + title: "Team Members", values: [12, 15, 18], + description: "Dedicated caregivers"}, ], - chartTitle: "Monthly Adoptions", - chartData: [ + chartTitle: "Monthly Adoptions", chartData: [ { value: 28 }, { value: 35 }, { value: 42 }, { value: 38 }, { value: 45 }, ], - listTitle: "Recent Adoptions", - listItems: [ + listTitle: "Recent Adoptions", listItems: [ { icon: Check, - title: "Max adopted by the Johnson family", - status: "Completed", - }, + title: "Max adopted by the Johnson family", status: "Completed"}, { icon: Check, - title: "Luna found her home with Sarah", - status: "Completed", - }, + title: "Luna found her home with Sarah", status: "Completed"}, { icon: Heart, - title: "Charlie waiting for perfect match", - status: "Interested", - }, + title: "Charlie waiting for perfect match", status: "Interested"}, ], }} /> @@ -118,10 +101,7 @@ export default function HomePage() {