20 lines
595 B
Plaintext
20 lines
595 B
Plaintext
---
|
|
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>
|