feat: dados mock de todos os módulos

This commit is contained in:
Junior
2026-03-14 10:34:38 -03:00
parent cb15c747b6
commit ccaf29f229
8 changed files with 226 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import type { Concorrente } from '~/types'
export const concorrentes: Concorrente[] = [
{
id: '1', cnpj: '12.345.678/0001-90', nome: 'TechGov Soluções Ltda',
totalDisputas: 8, totalVitorias: 3,
historicoDisputas: [
{ editalId: '1', venceu: false, valor: 820000 },
{ editalId: '5', venceu: true, valor: 1250000 },
],
},
{
id: '2', cnpj: '98.765.432/0001-10', nome: 'InfoPública Tecnologia S.A.',
totalDisputas: 12, totalVitorias: 5,
historicoDisputas: [
{ editalId: '1', venceu: false, valor: 830000 },
{ editalId: '8', venceu: true, valor: 910000 },
],
},
{
id: '3', cnpj: '11.222.333/0001-44', nome: 'GovTech Brasil Ltda',
totalDisputas: 6, totalVitorias: 2,
historicoDisputas: [
{ editalId: '3', venceu: false, valor: 415000 },
],
},
]