Files
lcbp3/frontend/app/test-admin-sidebar/page.tsx
T
admin 48c0f468bd
Build and Deploy / deploy (push) Failing after 4m23s
260319:1323 Fix fronend UUID #02
2026-03-19 13:23:23 +07:00

40 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client";
import { AdminSidebar } from "@/components/admin/sidebar";
export default function TestAdminSidebarPage() {
return (
<div className="flex min-h-screen bg-background">
<AdminSidebar />
<div className="flex-1 p-6">
<div className="space-y-6">
<h1 className="text-3xl font-bold tracking-tight">Admin Sidebar Test</h1>
<p className="text-muted-foreground">
admin sidebar
</p>
<div className="grid gap-4">
<div className="p-4 border rounded-lg">
<h2 className="text-xl font-semibold mb-2"> Admin:</h2>
<ul className="list-disc list-inside space-y-1 text-sm">
<li>Access Control - Users, Roles, Organizations</li>
<li>Document Control - Projects, Contracts, Numbering, Reference Data, Workflows</li>
<li>Drawing Master - Contract/Shop Categories</li>
<li>Monitoring - Audit Logs, System Logs, Sessions</li>
<li>Migration - Review Queue, Error Logs</li>
<li>Settings</li>
</ul>
</div>
<div className="p-4 bg-blue-50 border border-blue-200 rounded-lg">
<p className="text-sm text-blue-800">
Admin sidebar collapsible
</p>
</div>
</div>
</div>
</div>
</div>
);
}