16 lines
494 B
Plaintext
16 lines
494 B
Plaintext
---
|
|
import AdminLayout from '../../../layouts/AdminLayout.astro';
|
|
import SystemControl from '../../../components/admin/SystemControl';
|
|
---
|
|
|
|
<AdminLayout title="Configuration">
|
|
<div class="space-y-6">
|
|
<SystemControl client:load />
|
|
|
|
<div class="bg-titanium border border-edge-normal rounded-xl p-6">
|
|
<h2 class="text-2xl font-bold text-gold-500 mb-4">System Settings</h2>
|
|
<p class="text-gray-400">Advanced configuration coming soon</p>
|
|
</div>
|
|
</div>
|
|
</AdminLayout>
|