From b1429afcbe5556e202e95216eab08a46a79f25ab Mon Sep 17 00:00:00 2001 From: Andrei Date: Fri, 3 Oct 2025 13:03:55 +0000 Subject: [PATCH] fix: Correct medicine tracker route on dashboard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed quick action link from /track/medication to /track/medicine to match the actual route defined in the app structure. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- maternal-web/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maternal-web/app/page.tsx b/maternal-web/app/page.tsx index f593874..6f5f56a 100644 --- a/maternal-web/app/page.tsx +++ b/maternal-web/app/page.tsx @@ -98,7 +98,7 @@ export default function HomePage() { { icon: , label: t('quickActions.feeding'), color: '#E91E63', path: '/track/feeding' }, // Pink with 4.5:1 contrast { icon: , label: t('quickActions.sleep'), color: '#1976D2', path: '/track/sleep' }, // Blue with 4.5:1 contrast { icon: , label: t('quickActions.diaper'), color: '#F57C00', path: '/track/diaper' }, // Orange with 4.5:1 contrast - { icon: , label: t('quickActions.medicine'), color: '#C62828', path: '/track/medication' }, // Red with 4.5:1 contrast + { icon: , label: t('quickActions.medicine'), color: '#C62828', path: '/track/medicine' }, // Red with 4.5:1 contrast { icon: , label: t('quickActions.activities'), color: '#558B2F', path: '/activities' }, // Green with 4.5:1 contrast { icon: , label: t('quickActions.aiAssistant'), color: '#D84315', path: '/ai-assistant' }, // Deep orange with 4.5:1 contrast ];