18 lines
661 B
Plaintext
18 lines
661 B
Plaintext
|
|
---
|
|
import Layout from '@/layouts/AdminLayout.astro';
|
|
import AvatarIntelligenceManager from '@/components/admin/intelligence/AvatarIntelligenceManager';
|
|
import { CoreProvider } from '@/components/providers/CoreProviders';
|
|
---
|
|
<Layout title="Avatar Intelligence">
|
|
<div class="p-8">
|
|
<div class="mb-6">
|
|
<h1 class="text-3xl font-bold text-white mb-2">🎭 Avatar Intelligence</h1>
|
|
<p class="text-gray-400">Manage your base avatars, variants, and target personas. Each avatar represents a unique customer profile.</p>
|
|
</div>
|
|
<CoreProvider client:load>
|
|
<AvatarIntelligenceManager client:load />
|
|
</CoreProvider>
|
|
</div>
|
|
</Layout>
|