Files
mini/src/pages/admin/seo/fragments.astro

15 lines
480 B
Plaintext

---
import Layout from '@/layouts/AdminLayout.astro';
---
<Layout title="Content Fragments">
<div class="p-6">
<h1 class="text-3xl font-bold text-slate-100 mb-6">Content Fragments</h1>
<div class="bg-slate-800 rounded-lg border border-slate-700 p-8 text-center">
<h2 class="text-xl font-bold text-white mb-2">Reusable Content Blocks</h2>
<p class="text-slate-400">Manage global text snippets, CTAs, and bios here.</p>
</div>
</div>
</Layout>