18 lines
535 B
TypeScript
18 lines
535 B
TypeScript
import EnrichmentQueueClient from "./EnrichmentQueueClient";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default function AdminEnrichmentPage() {
|
|
return (
|
|
<div className="mx-auto w-full max-w-6xl px-6 py-8">
|
|
<div className="mb-6">
|
|
<h1 className="text-xl font-semibold text-zinc-50">Enrichment Queue</h1>
|
|
<p className="mt-1 text-sm text-zinc-400">
|
|
Review AI/rules suggestions, approve/reject, then apply to products.
|
|
</p>
|
|
</div>
|
|
|
|
<EnrichmentQueueClient />
|
|
</div>
|
|
);
|
|
} |