feat: Implement full Avatar Manager UI and fix variant data import

This commit is contained in:
cawcenter
2025-12-12 22:09:54 -05:00
parent 51a6461d6b
commit 5dfaa861a5
2 changed files with 170 additions and 4 deletions

View File

@@ -1,13 +1,14 @@
---
import Layout from '@/layouts/AdminLayout.astro';
import AvatarManager from '@/components/admin/content/AvatarManager';
---
<Layout title="Avatars Intelligence">
<div class="p-8">
<h1 class="text-3xl font-bold text-white mb-4">Avatars</h1>
<p class="text-gray-400">Manage your 10 Base Avatars and Intelligence here.</p>
<div class="mt-8 p-6 bg-gray-800 rounded-xl border border-gray-700">
<p class="text-yellow-400">🚧 Intelligence Station Under Construction</p>
<div class="mb-6">
<h1 class="text-3xl font-bold text-white mb-2">Avatar Intelligence</h1>
<p class="text-gray-400">Manage your 10 base avatars, variants, and business niches.</p>
</div>
<AvatarManager client:load />
</div>
</Layout>