15 lines
409 B
Plaintext
15 lines
409 B
Plaintext
|
|
---
|
|
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>
|