God Mode: Sync All Admin Pages & Components. Fix Navigation. Fix Schemas.

This commit is contained in:
cawcenter
2025-12-14 19:28:20 -05:00
parent 189abfb384
commit e97bdee388
112 changed files with 5035 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
import Layout from '@/layouts/AdminLayout.astro';
import LogViewer from '@/components/admin/content/LogViewer';
---
<Layout title="System Logs">
<div class="p-8">
<div class="mb-6">
<h1 class="text-3xl font-bold text-white mb-2">System Work Log</h1>
<p class="text-gray-400">Real-time backend execution and activity logs.</p>
</div>
<LogViewer client:load />
</div>
</Layout>