10 lines
367 B
Plaintext
10 lines
367 B
Plaintext
---
|
|
import AdminLayout from '../../layouts/AdminLayout.astro';
|
|
import Settings from '../../components/react/admin/Settings';
|
|
---
|
|
|
|
<AdminLayout title="Site Settings">
|
|
<p slot="header-subtitle" class="mt-2 text-sm md:text-base" style="color: var(--text) !important;">Configure how your blog looks and feels globally.</p>
|
|
<Settings client:load />
|
|
</AdminLayout>
|