God Mode: Sync All Admin Pages & Components. Fix Navigation. Fix Schemas.
This commit is contained in:
19
src/pages/admin/leads/index.astro
Normal file
19
src/pages/admin/leads/index.astro
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
import Layout from '@/layouts/AdminLayout.astro';
|
||||
import LeadsManager from '@/components/admin/leads/LeadsManager';
|
||||
---
|
||||
|
||||
<Layout title="Leads Management | Spark Intelligence">
|
||||
<div class="p-8 space-y-6">
|
||||
<div class="flex justify-between items-start">
|
||||
<div>
|
||||
<h1 class="text-3xl font-bold text-white tracking-tight">👥 Leads & Prospects</h1>
|
||||
<p class="text-zinc-400 mt-2 max-w-2xl">
|
||||
Manage incoming leads and track their status from "New" to "Converted".
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<LeadsManager client:only="react" />
|
||||
</div>
|
||||
</Layout>
|
||||
Reference in New Issue
Block a user