AUD-04: backend-authorizer + dev-server + next.js audit-log-ansicht

This commit is contained in:
sysops
2026-08-28 00:10:48 +02:00
parent c9e8edbbf0
commit 3b96d8ef41
9 changed files with 409 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
export const metadata = {
title: "NEXARCH Audit-Log",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="de">
<body style={{ fontFamily: "system-ui, sans-serif", margin: 0, background: "#f5f6f8" }}>
{children}
</body>
</html>
);
}