initial commit
This commit is contained in:
21
app/admin/services/page.tsx
Normal file
21
app/admin/services/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
'use client'
|
||||
|
||||
import AdminLayout from '@/components/admin/AdminLayout'
|
||||
import ServiceManagement from '@/components/admin/ServiceManagement'
|
||||
|
||||
export default function AdminServicesPage() {
|
||||
return (
|
||||
<AdminLayout>
|
||||
<div className="space-y-6">
|
||||
<div>
|
||||
<h1 className="text-3xl font-bold text-gray-900">Service Management</h1>
|
||||
<p className="text-gray-600 mt-2">
|
||||
Manage deployments, developer requests, and service status
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<ServiceManagement />
|
||||
</div>
|
||||
</AdminLayout>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user