Initial commit - cleaned for CV

This commit is contained in:
Renato97
2026-03-31 01:23:33 -03:00
commit 9c11f23af0
142 changed files with 13690 additions and 0 deletions

12
app/debts/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
'use client'
import { DashboardLayout } from '@/components/layout/DashboardLayout'
import { DebtSection } from '@/components/debts'
export default function DebtsPage() {
return (
<DashboardLayout title="Deudas">
<DebtSection />
</DashboardLayout>
)
}