-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpage.tsx
More file actions
36 lines (32 loc) · 1017 Bytes
/
page.tsx
File metadata and controls
36 lines (32 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
export const dynamic = "force-dynamic";
import { SectionCardsLive } from "@/components/section-cards-live";
import { RecentActivity } from "@/components/recent-activity";
import { PipelineStatus } from "@/components/pipeline-status";
export default function DashboardPage() {
return (
<div className="flex flex-col gap-6">
<div>
<h1 className="text-3xl font-bold tracking-tight">
Content Ops Dashboard
</h1>
<p className="text-muted-foreground">
Overview of your automated content engine — videos, sponsors,
and pipeline health.
</p>
</div>
<SectionCardsLive />
<div className="grid gap-4 md:grid-cols-2">
<RecentActivity />
<div className="rounded-lg border p-6">
<h2 className="text-lg font-semibold">Pipeline Status</h2>
<p className="mt-2 text-sm text-muted-foreground">
Real-time view of content moving through the pipeline.
</p>
<div className="mt-4">
<PipelineStatus />
</div>
</div>
</div>
</div>
);
}