Files
net/frontend/src/pages/admin/content/work_log.astro
2025-12-12 19:08:57 -05:00

14 lines
413 B
Plaintext

---
import Layout from '@/layouts/AdminLayout.astro';
---
<Layout title="System Logs">
<div class="p-8">
<h1 class="text-3xl font-bold text-white mb-4">System Work Log</h1>
<p class="text-gray-400">Backend Execution Logs.</p>
<div class="mt-8 p-6 bg-gray-800 rounded-xl border border-gray-700">
<p class="text-yellow-400">🚧 Log Viewer Under Construction</p>
</div>
</div>
</Layout>