apps/admin/src/app/ingestion/page.tsx
import IngestionLive from "./IngestionLive";
export const dynamic = "force-dynamic";
export default function IngestionPage() {
return (
<div>
<h1 className="text-2xl font-bold">Live ingestion</h1>
<p className="mt-1 text-sm text-neutral-500">
Real-time throughput of the continuous ingestion loop (pm2 <code>homesonspec-ingest</code> on Kamatera).
Numbers refresh automatically.
</p>
<IngestionLive />
</div>
);
}