20 lines
732 B
Plaintext
20 lines
732 B
Plaintext
---
|
|
import AdminLayout from '@/layouts/AdminLayout.astro';
|
|
import UnderConstruction from '@/components/ui/UnderConstruction';
|
|
---
|
|
|
|
<AdminLayout title="Content Effectiveness">
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-white mb-2">Reports & Analysis</h1>
|
|
<p className="text-slate-400">Deep dive into content performance metrics.</p>
|
|
</div>
|
|
<UnderConstruction
|
|
client:only="react"
|
|
title="Intelligence Reports"
|
|
description="Advanced analytics including conversion tracking, A/B testing results, and heatmaps are coming in the next update."
|
|
eta="Planned for Phase 4.1"
|
|
/>
|
|
</div>
|
|
</AdminLayout>
|