v0.6.0 — Kitchen: Pantry & Freezer inventory

This commit is contained in:
Bonna Moon
2026-06-29 17:28:28 -05:00
parent f483630419
commit 0d52ea5ad1
12 changed files with 784 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
import {
LayoutDashboard, Leaf, BookOpen, Package, PawPrint, MapPin, Bell,
Lightbulb, KeyRound, HardDrive, RefreshCw, type LucideIcon,
Lightbulb, KeyRound, HardDrive, RefreshCw, UtensilsCrossed, type LucideIcon,
} from "lucide-react";
export type NavItem = { label: string; href: string; icon: LucideIcon };
export type NavItem = { label: string; href: string; icon: LucideIcon; section?: string };
export const navItems: NavItem[] = [
{ label: "Dashboard", href: "/dashboard", icon: LayoutDashboard },
@@ -15,6 +15,10 @@ export const navItems: NavItem[] = [
{ label: "Reminders", href: "/tasks", icon: Bell },
];
export const kitchenItems: NavItem[] = [
{ label: "Pantry & Freezer", href: "/kitchen/pantry", icon: UtensilsCrossed },
];
export const settingsItems: NavItem[] = [
{ label: "Suggestions", href: "/suggestions", icon: Lightbulb },
{ label: "API tokens", href: "/settings/tokens", icon: KeyRound },