Skip to content

Commit

Permalink
website jobs added
Browse files Browse the repository at this point in the history
  • Loading branch information
Santipac committed Jul 2, 2023
1 parent 3b6e9ad commit 452d044
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
12 changes: 12 additions & 0 deletions app/[lang]/experience/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { experience } from '@/constants/experience';
import { Navigation } from '../components/navigation';
import { LangParams } from '@/interfaces';
import { getTranslation } from '@/get-translation';
import Link from 'next/link';
import { ArrowUpRight } from 'lucide-react';
export default async function ExperiencePage({ params: { lang } }: LangParams) {
const t = await getTranslation(lang);
return (
Expand Down Expand Up @@ -40,6 +42,16 @@ export default async function ExperiencePage({ params: { lang } }: LangParams) {
<li key={task}>{task}</li>
))}
</ul>
{exp.link !== null && (
<Link
href={exp.link}
className="font-bold text-xl hover:text-sky-500 transition-colors underline flex text-zinc-200"
target="_blank"
>
{t.experience.button}
<ArrowUpRight className="h-5 w-5" />
</Link>
)}
</article>
<div className="hidden w-full h-px md:block bg-zinc-800" />
</>
Expand Down
8 changes: 8 additions & 0 deletions constants/experience.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export const experience = {
'API calls from a backoffice to bring the corresponding information.',
'Documentation and organization of tasks in Kanban board.',
],
link: 'https://comunyt.com/',
},
{
company: 'Aoki Technology & Business',
Expand All @@ -23,6 +24,7 @@ export const experience = {
'Route management for correct navigation between views',
' Context API to manage the global state in a simple way and without dependencies.',
],
link: 'https://aokitech.com.ar/',
},
{
company: 'PerfectGift.ai',
Expand All @@ -35,6 +37,7 @@ export const experience = {
'Redux architecture for clean and scalable global state management.',
'Route management for correct navigation between views.',
],
link: 'https://perfectgift.ai/',
},
{
company: 'Alkemy',
Expand All @@ -48,6 +51,7 @@ export const experience = {
'Testing of components with Jest.',
'User Authentication with JsonWebToken',
],
link: null,
},
],
es: [
Expand All @@ -63,6 +67,7 @@ export const experience = {
'Consumo de API desde un backoffice para traer la información correspondiente.',
'Documentacion y organización de las tareas en tablero Kanban.',
],
link: 'https://comunyt.com/',
},
{
company: 'Aoki Tecnología & Negocios',
Expand All @@ -75,6 +80,7 @@ export const experience = {
'Manejo de rutas para una correcta navegación entre vistas',
'Context API para gestionar el estado global de forma sencilla y sin dependencias.',
],
link: 'https://aokitech.com.ar/',
},
{
company: 'PerfectGift.ai',
Expand All @@ -87,6 +93,7 @@ export const experience = {
'Arquitectura Redux para una gestión de estados global, limpia y escalable.',
'Manejo de rutas para una correcta navegación entre vistas.',
],
link: 'https://perfectgift.ai/',
},
{
company: 'Alkemy',
Expand All @@ -100,6 +107,7 @@ export const experience = {
'Testing de componentes con Jest.',
'Autenticación de usuarios con JsonWebToken',
],
link: null,
},
],
};
3 changes: 2 additions & 1 deletion translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"secondParagraph": "I'm currently learning SQL. Also I'm taking a course of Data Structures and Algorithms with JavaScript."
},
"experience": {
"title": "Experience"
"title": "Experience",
"button": "Visit Website"
},
"projects": {
"title": "Projects",
Expand Down
3 changes: 2 additions & 1 deletion translations/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"secondParagraph": "Actualmente estoy aprendiendo SQL con PostgreSQL. Además estoy tomando un curso de Estructuras de Datos y Algoritmos."
},
"experience": {
"title": "Experiencia"
"title": "Experiencia",
"button": "Visitar Web"
},
"projects": {
"title": "Proyectos",
Expand Down

1 comment on commit 452d044

@vercel
Copy link

@vercel vercel bot commented on 452d044 Jul 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

portfolio – ./

portfolio-santipac.vercel.app
portfolio-git-main-santipac.vercel.app
santiagopacini.vercel.app

Please sign in to comment.