feat: Add edit pages with cache

This commit is contained in:
2025-06-08 08:33:43 +03:00
parent e37f9e14bc
commit b09c1b3214
37 changed files with 2223 additions and 772 deletions

View File

@@ -4,7 +4,9 @@ export interface NavigationItem {
id: string;
label: string;
icon: LucideIcon;
path: string;
path?: string;
onClick?: () => void;
nestedItems?: NavigationItem[];
}
export type NavigationSection = "primary" | "secondary";