God Mode: Sync All Admin Pages & Components. Fix Navigation. Fix Schemas.

This commit is contained in:
cawcenter
2025-12-14 19:28:20 -05:00
parent 189abfb384
commit e97bdee388
112 changed files with 5035 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
---
import Layout from '@/layouts/AdminLayout.astro';
import GenericCollectionManager from '@/components/admin/collections/GenericCollectionManager';
---
<Layout title="Headlines | Spark Intelligence">
<div class="p-8">
<GenericCollectionManager
client:only="react"
collection="headline_inventory"
title="Headline Inventory"
displayField="text"
fields={[
{ key: 'text', label: 'Headline Text', type: 'text' },
{ key: 'type', label: 'Type (H1/H2)', type: 'text' },
{ key: 'category', label: 'Category', type: 'text' },
{ key: 'spintax_root', label: 'Spintax Root', type: 'text' }
]}
/>
</div>
</Layout>