chore: initial project import
Some checks failed
CI - Production Readiness / Verify (push) Has been cancelled
Some checks failed
CI - Production Readiness / Verify (push) Has been cancelled
This commit is contained in:
18
app/agent/page.tsx
Normal file
18
app/agent/page.tsx
Normal file
@ -0,0 +1,18 @@
|
||||
import { DashboardPlaceholder } from "@/components/placeholders";
|
||||
import { PlaceholderActions, ShellPage } from "@/components/page-templates";
|
||||
import { getDashboardData } from "@/lib/platform-data";
|
||||
|
||||
export default async function AgentDashboardPage() {
|
||||
const data = await getDashboardData();
|
||||
|
||||
return (
|
||||
<ShellPage
|
||||
shell="agent"
|
||||
title="Agent Dashboard"
|
||||
description="Assigned conversations, unread queue, due follow-up, dan personal stats."
|
||||
actions={<PlaceholderActions primaryHref="/agent/inbox" primaryLabel="Open my inbox" />}
|
||||
>
|
||||
<DashboardPlaceholder stats={data.stats} priorityQueue={data.priorityQueue} />
|
||||
</ShellPage>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user