initial commit
This commit is contained in:
19
app/admin/reports/page.tsx
Normal file
19
app/admin/reports/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
'use client'
|
||||
|
||||
import AdminLayout from '@/components/admin/AdminLayout'
|
||||
import ReportsManagement from '@/components/admin/ReportsManagement'
|
||||
|
||||
export default function AdminReportsPage() {
|
||||
return (
|
||||
<AdminLayout>
|
||||
<div className="space-y-6">
|
||||
<div>
|
||||
<h1 className="text-3xl font-bold text-gray-900">Reports & Analytics</h1>
|
||||
<p className="text-gray-600 mt-2">Generate and export comprehensive system reports</p>
|
||||
</div>
|
||||
|
||||
<ReportsManagement />
|
||||
</div>
|
||||
</AdminLayout>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user