feat: dashboard

This commit is contained in:
Julien Froidefond
2025-08-21 08:23:24 +02:00
parent 328a1b68a1
commit 488684fd9b
8 changed files with 2484 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ import Link from "next/link";
import { usePathname } from "next/navigation";
import { Button } from "@/components/ui/button";
import { ThemeToggle } from "@/components/layout/theme-toggle";
import { BarChart3, User, Settings } from "lucide-react";
import { BarChart3, User, Settings, Building2 } from "lucide-react";
interface NavigationProps {
userInfo?: {
@@ -28,6 +28,11 @@ export function Navigation({ userInfo }: NavigationProps = {}) {
label: "Évaluation",
icon: User,
},
{
href: "/admin",
label: "Administration",
icon: Building2,
},
];
return (