update label

This commit is contained in:
2025-12-12 13:18:11 -03:00
parent 319016a361
commit 3147ec2317
13 changed files with 71 additions and 31 deletions

View File

@@ -0,0 +1,21 @@
import type { Route } from './+types/route'
export function meta({}) {
return [{ title: 'Resumo de cobranças' }]
}
export default function Route({}: Route.ComponentProps) {
return (
<>
<div className="space-y-0.5 mb-8">
<h1 className="text-2xl font-bold tracking-tight">
Resumo de cobranças
</h1>
<p className="text-muted-foreground">
Acompanhe as cobranças em tempo real e garanta mais eficiência no
controle financeiro.
</p>
</div>
</>
)
}