ADD: added einnahmen, ausgaben and bilanz

This commit is contained in:
hwinkel
2026-03-24 14:48:32 +01:00
parent 1bbeaf2c34
commit 6d8c4b615f
32 changed files with 2982 additions and 10 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
import { Outlet, useLoaderData, Link, useLocation } from "react-router";
import { requireAdmin } from "@/session.server";
import { Shield, Users, ScrollText, LayoutDashboard } from "lucide-react";
import { Shield, Users, ScrollText, LayoutDashboard, Building2 } from "lucide-react";
export async function loader({ request }: { request: Request }) {
const user = await requireAdmin(request);
@@ -12,6 +12,7 @@ export default function AdminLayout() {
const location = useLocation();
const navItems = [
{ to: "/admin/mandanten", label: "Mandanten", icon: Building2 },
{ to: "/admin/users", label: "Benutzerverwaltung", icon: Users },
{ to: "/admin/logs", label: "Audit-Log", icon: ScrollText },
];