16 lines
509 B
Plaintext
16 lines
509 B
Plaintext
---
|
|
import AdminLayout from '@/layouts/AdminLayout.astro';
|
|
import BulkGenerator from '@/components/assembler/BulkGenerator';
|
|
---
|
|
|
|
<AdminLayout title="Content Assembly Workflow">
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-white mb-2">Bulk Assembly</h1>
|
|
<p className="text-slate-400">Generate hundreds of articles using your templates and data sources.</p>
|
|
</div>
|
|
|
|
<BulkGenerator client:only="react" />
|
|
</div>
|
|
</AdminLayout>
|