14 lines
413 B
Plaintext
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>
|