15 lines
512 B
Plaintext
15 lines
512 B
Plaintext
---
|
|
import AdminLayout from '@/layouts/AdminLayout.astro';
|
|
import { MetricsDashboard } from '@/components/analytics/MetricsDashboard';
|
|
---
|
|
|
|
<AdminLayout title="Advanced Analytics">
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-white mb-2">Command Center Analytics</h1>
|
|
<p className="text-slate-400">Real-time deep dive into platform performance metrics.</p>
|
|
</div>
|
|
<MetricsDashboard client:only="react" />
|
|
</div>
|
|
</AdminLayout>
|