Skip to content

Commit

Permalink
add oti project
Browse files Browse the repository at this point in the history
  • Loading branch information
francoborrelli committed Apr 22, 2024
1 parent e2e6955 commit 4382858
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
Binary file added public/images/projects/oti/logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/constants/cv/personalProjects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,17 @@ export const DPAS = {
],
} as Song;

const OTI = {
name: 'OTI_NAME',
artist: 'OTI_ARTIST',
length: 'OTI_LENGTH',
type: ProjectTypesEnum.WEB,
description: 'OTI_DESCRIPTION',
imageUrl: getProjectPath('oti/logo.jpg'),
link: 'https://www.oti.com.ar/',
skills: [tags.Django, tags.Postgres, tags.Docker, tags['CI/CD']],
};

export const CalmCovid = {
name: 'CALM_COVID_NAME',
artist: 'CALM_COVID_ARTIST',
Expand Down Expand Up @@ -421,6 +432,7 @@ export const PersonalProjects = {
GralTasks,
GralStores,
TFD,
OTI,
CalmCovid,
DPAS,
AuthoringTool,
Expand Down
8 changes: 8 additions & 0 deletions src/i18n/en/cv/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,16 @@ const DPAS = {
'The affiliation system is a web application developed for the Provincial Directorate of Social Action of the province of Buenos Aires, Argentina. The application aims to facilitate the management of affiliates and the services they receive.',
};

const OTI = {
OTI_NAME: 'Asset Declarations System',
OTI_ARTIST: 'Buenos Aires Province',
OTI_LENGTH: '2021',
OTI_DESCRIPTION: `I developed an internal system for the Office of Institutional Transparency of the province of Buenos Aires. The system communicates with the Federal Public Revenue Administration (AFIP) to receive information on asset declarations and allows for their subsequent opening and publication by generating PDFs with their respective digital signatures.`,
};

export const PROJECTS = {
// Projects
...OTI,
...TFD,
...DPAS,
...RUKIR,
Expand Down
8 changes: 8 additions & 0 deletions src/i18n/es/cv/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,18 @@ const DPAS = {
'El sistema afiliatorio es una aplicación web desarrollada para la Dirección Provincial de Acción Social de la provincia de Buenos Aires, Argentina. La aplicación tiene como objetivo facilitar la gestión de los afiliados y los servicios que reciben.',
};

const OTI = {
OTI_NAME: 'Declaraciones juradas',
OTI_ARTIST: 'Provincia de Buenos Aires',
OTI_LENGTH: '2021',
OTI_DESCRIPTION: `Desarrollé un sistema interno para la Oficina de Transparencia Institucional de la provincia de Buenos Aires. El sistema se comunica con la Administración Federal de Ingresos Públicos (AFIP) para recibir información sobre declaraciones juradas de bienes patrimoniales y permite su posterior apertura y publicación generando PDFs con sus respectivas firmas digitales.`,
};

// Global Object

export const PROJECTS = {
// Projects
...OTI,
...TFD,
...DPAS,
...RUKIR,
Expand Down

0 comments on commit 4382858

Please sign in to comment.