feat: secure convex admin flows with real metrics\n\nCo-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>

This commit is contained in:
esdrasrenan 2025-10-05 19:59:24 -03:00
parent 0ec5b49e8a
commit 29a647f6c6
43 changed files with 4992 additions and 363 deletions

View file

@ -0,0 +1,12 @@
import type { Metadata } from "next"
import { PortalTicketList } from "@/components/portal/portal-ticket-list"
export const metadata: Metadata = {
title: "Meus chamados",
description: "Acompanhe os chamados abertos com a equipe de suporte.",
}
export default function PortalTicketsPage() {
return <PortalTicketList />
}