diff --git a/src/app/page.tsx b/src/app/page.tsx index b6fa536..99c69a8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -84,34 +84,29 @@ export default function LandingPage() { stats: [ { title: "Behavior Insights", values: ["Memory Loss", "Anxiety", "Agitation"], - description: "Common patterns detected" - }, + description: "Common patterns detected"}, { title: "Response Rate", values: ["98%", "97%", "99%"], - valuePrefix: "", description: "User satisfaction" - }, + valuePrefix: "", description: "User satisfaction"}, { title: "Support Time", values: ["24/7", "24/7", "24/7"], - description: "Always available for caregivers" - }, + description: "Always available for caregivers"}, ], chartTitle: "Care Engagement", chartData: [ - { value: 75 }, - { value: 85 }, - { value: 90 }, - { value: 88 }, - { value: 92 }, + { value: 75 as number }, + { value: 85 as number }, + { value: 90 as number }, + { value: 88 as number }, + { value: 92 as number }, ], listTitle: "Recent Guidance", listItems: [ { icon: Lightbulb, title: "Repeated Questions", status: "Answered" }, { icon: AlertCircle, - title: "Managing Agitation", status: "In Progress" - }, + title: "Managing Agitation", status: "In Progress"}, { icon: CheckCircle, - title: "Sleep Routine Setup", status: "Completed" - }, + title: "Sleep Routine Setup", status: "Completed"}, ], }} />