God Mode: Sync All Admin Pages & Components. Fix Navigation. Fix Schemas.
This commit is contained in:
17
src/pages/admin/content/avatars.astro
Normal file
17
src/pages/admin/content/avatars.astro
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
---
|
||||
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>
|
||||
Reference in New Issue
Block a user