13 lines
1.0 KiB
TypeScript
13 lines
1.0 KiB
TypeScript
import type { Documento } from '~/types'
|
|
|
|
export const documentos: Documento[] = [
|
|
{ id: '1', nome: 'Certidão Federal (PGFN)', tipo: 'certidao', dataVencimento: new Date('2026-04-28'), status: 'valida' },
|
|
{ id: '2', nome: 'Certidão Estadual (SP)', tipo: 'certidao', dataVencimento: new Date('2026-03-22'), status: 'vencendo' },
|
|
{ id: '3', nome: 'CND FGTS', tipo: 'certidao', dataVencimento: new Date('2026-03-11'), status: 'vencida' },
|
|
{ id: '4', nome: 'Contrato Social', tipo: 'contrato_social', dataVencimento: null, status: 'sem_vencimento' },
|
|
{ id: '5', nome: 'Balanço Patrimonial 2025', tipo: 'balanco', dataVencimento: null, status: 'sem_vencimento' },
|
|
{ id: '6', nome: 'Atestado de Capacidade Técnica — TI', tipo: 'atestado', dataVencimento: null, status: 'sem_vencimento' },
|
|
{ id: '7', nome: 'CND Municipal (São Paulo)', tipo: 'certidao', dataVencimento: new Date('2026-03-20'), status: 'vencendo' },
|
|
{ id: '8', nome: 'Procuração — João Silva', tipo: 'procuracao', dataVencimento: new Date('2026-12-31'), status: 'valida' },
|
|
]
|