feat: enhance navigation and template filtering with icon support and new category mappings

This commit is contained in:
Johnpaul
2025-08-20 21:10:39 +01:00
parent 989e4e50d3
commit 18482ac385
5 changed files with 130 additions and 24 deletions

View File

@@ -1,9 +1,11 @@
export interface NavItemData {
id: string
label: string
icon?: string
}
export interface NavGroupData {
title: string
items: NavItemData[]
icon?: string
}