feat: add new navigation item for rules in the dashboard sidebar with associated icon

This commit is contained in:
Julien Froidefond
2025-11-29 17:18:59 +01:00
parent 292d1fb394
commit 9e576f2b0e
7 changed files with 912 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ import {
ChevronLeft,
ChevronRight,
Settings,
Wand2,
} from "lucide-react";
const navItems = [
@@ -23,6 +24,7 @@ const navItems = [
{ href: "/folders", label: "Organisation", icon: FolderTree },
{ href: "/transactions", label: "Transactions", icon: Upload },
{ href: "/categories", label: "Catégories", icon: Tags },
{ href: "/rules", label: "Règles", icon: Wand2 },
{ href: "/statistics", label: "Statistiques", icon: BarChart3 },
];