Implement public audit pages

This commit is contained in:
Matthias
2026-06-05 14:14:07 +02:00
parent 03cb65fde4
commit 47ee2c2d51
25 changed files with 1039 additions and 45 deletions

7
app/audit/layout.tsx Normal file
View File

@@ -0,0 +1,7 @@
export default function AuditLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return <div className="bg-slate-50 text-slate-950">{children}</div>;
}