feat(filters): ticket company filter + column; reports: company filter in CSVs; dashboard: queue summary; docs: agents.md and roadmap updates

This commit is contained in:
Esdras Renan 2025-10-07 14:18:59 -03:00
parent 70f91f5bbd
commit 2cf399dcb1
9 changed files with 100 additions and 31 deletions

View file

@ -2,6 +2,12 @@ import { AppShell } from "@/components/app-shell"
import { SectionCards } from "@/components/section-cards"
import { SiteHeader } from "@/components/site-header"
import { RecentTicketsPanel } from "@/components/tickets/recent-tickets-panel"
import dynamic from "next/dynamic"
const TicketQueueSummaryCards = dynamic(
() => import("@/components/tickets/ticket-queue-summary").then((m) => ({ default: m.TicketQueueSummaryCards })),
{ ssr: false }
)
import { ChartAreaInteractive } from "@/components/chart-area-interactive"
export default function Dashboard() {
@ -18,9 +24,12 @@ export default function Dashboard() {
>
<SectionCards />
<div className="grid gap-6 px-4 lg:grid-cols-[minmax(0,1.1fr)_minmax(0,0.9fr)] lg:px-6 lg:[&>*]:min-w-0">
<ChartAreaInteractive />
<ChartAreaInteractive />
<RecentTicketsPanel />
</div>
<div className="px-4 lg:px-6">
<TicketQueueSummaryCards />
</div>
</AppShell>
)
}