22 lines
562 B
TypeScript
22 lines
562 B
TypeScript
'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>
|
|
)
|
|
}
|