God Mode: Sync All Admin Pages & Components. Fix Navigation. Fix Schemas.
This commit is contained in:
21
src/pages/admin/collections/headline-inventory.astro
Normal file
21
src/pages/admin/collections/headline-inventory.astro
Normal 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>
|
||||
Reference in New Issue
Block a user