Phases 6-7

This commit is contained in:
Aerilyn Weber 2026-05-14 14:47:23 +09:00
parent 76a516a417
commit 029940b079
111 changed files with 17247 additions and 447 deletions

View file

@ -71,6 +71,27 @@ const NAV: NavItem[] = [
section: 'Medicines',
},
{ id: 'settings', label: 'Settings', href: '/settings', icon: 'settings' },
{
id: 'recipes',
label: 'Recipes',
href: '/recipes',
icon: 'list',
section: 'Food',
},
{
id: 'pantry',
label: 'Pantry',
href: '/pantry',
icon: 'fridge',
section: 'Food',
},
{
id: 'products',
label: 'Product Library',
href: '/products',
icon: 'list',
section: 'Food',
},
];
function groupNav(items: NavItem[]): [string, NavItem[]][] {