first commit

This commit is contained in:
nBiqoz
2025-10-05 16:10:35 +02:00
parent 201fca4e68
commit 13cd637391
70 changed files with 7287 additions and 130 deletions

18
app/roles/page.tsx Normal file
View File

@@ -0,0 +1,18 @@
import { RolesTable } from "@/components/collections/roles-table";
export default function RolesPage() {
return (
<div className="space-y-6">
<div>
<h1 className="text-3xl font-bold tracking-tight">
Rôles et Permissions
</h1>
<p className="text-muted-foreground">
Gestion des rôles d&apos;accès Cercle GPT
</p>
</div>
<RolesTable />
</div>
);
}