v0.6.0 — Kitchen: Pantry & Freezer inventory
This commit is contained in:
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user