Initial state for GitNexus analysis

This commit is contained in:
Zaid Marzguioui
2026-03-29 19:44:57 +02:00
parent 9d7c7f8030
commit 61ff48cb73
155 changed files with 23483 additions and 1722 deletions

View File

@@ -0,0 +1,19 @@
export default async function AdminModulesPage() {
return (
<div className="flex flex-col gap-6">
<div>
<h1 className="text-2xl font-bold">Module-Übersicht</h1>
<p className="text-muted-foreground">
Mandantenübergreifende Modulverwaltung
</p>
</div>
<div className="rounded-lg border p-6">
<p className="text-sm text-muted-foreground">
Hier werden alle Module über alle Mandanten hinweg angezeigt.
Ermöglicht die zentrale Verwaltung von Modulvorlagen und -konfigurationen.
</p>
</div>
</div>
);
}