diff --git a/components/about/JobsDescription.tsx b/components/about/JobsDescription.tsx index 4b232158..614d2f78 100644 --- a/components/about/JobsDescription.tsx +++ b/components/about/JobsDescription.tsx @@ -9,13 +9,13 @@ const JobsDescription = () => {
- {item.title} + {item.title}

{item.title}{' '} {item.years && 'ยท '} - {item.years} years {item.partTimeJob && } + {item.years} {item.years === '1' ? 'year' : 'years'} {item.partTimeJob && }

diff --git a/data/about/index.ts b/data/about/index.ts index 966601fd..2e4fb2a7 100644 --- a/data/about/index.ts +++ b/data/about/index.ts @@ -1,4 +1,5 @@ import check from '@/public/icons/svg/about/check.svg' +import globe from '@/public/icons/svg/about/globe.svg' import reactLogo from '@/public/icons/svg/about/react-logo.svg' import text from '@/public/icons/svg/about/text.svg' @@ -13,23 +14,33 @@ interface Job { export const jobs: Job[] = [ { path: reactLogo, - title: 'React Developer', + title: 'Front End / React Developer', years: '4', description: ` - I work with JavaScript, TypeScript, React, and Redux. - I have a strong background writing functional components. - I use Tailwind CSS for styling and create user-friendly, responsive applications. + I work with JavaScript, React, TypeScript, and Redux. + I have a strong background in writing functional components. + I use Tailwind CSS and create user-friendly, responsive applications. `, partTimeJob: false, }, + { + path: globe, + title: 'Front End / JavaScript Developer', + years: '1', + description: ` + I created new website in PHP and JavaScript for SaaS company. + Including new and responsive design and I was working closely with UX designer. + `, + partTimeJob: false, + }, { path: check, title: 'QA Automation - Team Leader', - years: '2', + years: '1', description: ` I was asked to create and lead 2x QA automation teams. - Setting up Cypress and Playwright for E2E tests, writing test scripts in - JavaScript and TypeScript, and coordinating unit and integration tests. + Setting up Cypress and Playwright for\u00A0E2E\u00A0testing, and writing tests in + JavaScript and TypeScript. `, partTimeJob: false, }, @@ -38,7 +49,8 @@ export const jobs: Job[] = [ title: 'Localization - Manager', years: '2', description: ` - I had the amazing chance to work on Microsoft's projects. I was involved in localization of Windows, and Windows Phone. I also managed localization of SaaS company website into 10 languages. + I worked on Microsoft localization of Windows, and Windows Phone. + I also managed localization of\u00A0SaaS company website into 10 languages. `, partTimeJob: false, },