Skip to content

Commit

Permalink
ref: jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
krsiakdaniel committed Mar 6, 2024
1 parent a3f648c commit a9ef37c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
4 changes: 2 additions & 2 deletions components/about/JobsDescription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ const JobsDescription = () => {
<div key={item.title} className="flex flex-col gap-4 pb-4 pt-4">
<div className="flex flex-col items-start lg:flex-row lg:items-center">
<div className="mb-2 flex h-10 w-10 items-center justify-center rounded-full bg-blue-100 dark:bg-blue-900 md:mr-4 lg:mb-0">
<Image key={item.title} src={item.path} alt={item.title} width={20} height={20} />
<Image key={item.title} src={item.path} alt={item.title} width={22} height={22} />
</div>
<h3 className="text-2xl font-bold dark:text-white">
{item.title}{' '}
<small className="text-md text-neutral-500">
{item.years && '· '}
{item.years} years {item.partTimeJob && <PartTimeLabel />}
{item.years} {item.years === '1' ? 'year' : 'years'} {item.partTimeJob && <PartTimeLabel />}
</small>
</h3>
</div>
Expand Down
28 changes: 20 additions & 8 deletions data/about/index.ts
Original file line number Diff line number Diff line change
@@ -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'

Expand All @@ -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,
},
Expand All @@ -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,
},
Expand Down

0 comments on commit a9ef37c

Please sign in to comment.