Files
net/frontend/src/pages/admin/settings.astro

20 lines
1.4 KiB
Plaintext

---
import Layout from '@/layouts/AdminLayout.astro';
---
<Layout title="System Settings">
<div class="p-6">
<h1 class="text-3xl font-bold text-slate-100 mb-6">System Settings</h1>
<div class="bg-slate-800 rounded-lg border border-slate-700 p-8 text-center">
<div class="w-16 h-16 bg-slate-700 rounded-full flex items-center justify-center mx-auto mb-4">
<svg class="w-8 h-8 text-slate-400" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" /><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" /></svg>
</div>
<h2 class="text-xl font-bold text-white mb-2">Global Configuration</h2>
<p class="text-slate-400 max-w-md mx-auto">
System-wide settings for API keys, user management, and global defaults will go here.
</p>
</div>
</div>
</Layout>