Skip to content

Commit

Permalink
feat: work project kooperativa
Browse files Browse the repository at this point in the history
  • Loading branch information
krsiakdaniel committed Nov 22, 2024
1 parent 8b90022 commit 449a33c
Show file tree
Hide file tree
Showing 12 changed files with 137 additions and 12 deletions.
6 changes: 3 additions & 3 deletions app/work-experience/komercni-banka/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ const ProjectWorkKomercniBanka = () => {
pageLinkPrevious="/work-experience/smartsupp-dashboard"
pageNamePrevious="Smartsupp Dashboard"
dataTestIDPrevious="page-navigation-previous-smartsupp-dashboard"
pageLinkNext="/work-experience/smartsupp-web"
pageNameNext="Smartsupp Web"
dataTestIDNext="page-navigation-next-smartsupp-web"
pageLinkNext="/work-experience/kooperativa"
pageNameNext="Kooperativa"
dataTestIDNext="page-navigation-next-kooperativa"
/>
}
/>
Expand Down
57 changes: 57 additions & 0 deletions app/work-experience/kooperativa/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
import NextPageNavigation from '@/components/NextPageNavigation'
import { ProjectPageLayoutWrapper } from '@/components/layout/projectPage/ProjectPageLayoutWrapper'
import { sections } from '@/data/projects/work/kooperativa'
import { projectsWorkReact } from '@/data/projects/work/projectsOverview'
import { ID, PAGES_URL } from '@/utils/constants'
import { BreadCrumbsType } from '@/utils/types'
import { Metadata } from 'next'

export const metadata: Metadata = {
title: 'Kooperativa | Daniel Krsiak - React Developer',
description: 'I worked on an application for managing insurance policies for citizens property and products.',
keywords: [
'Daniel Krsiak',
'Kooperativa',
'Insurance company app',
'React Developer',
'JavaScript',
'TypeScript',
'React',
'Redux',
'Tailwind CSS',
'Figma',
'Storybook',
],
}

const breadCrumbs: BreadCrumbsType = {
linkLevel1: '/work-experience',
textLevel1: 'Work Experience',
linkLevel2: '/work-experience/kooperativa',
textLevel2: 'Kooperativa',
}

const ProjectWorkKooperativa = () => {
return (
<ProjectPageLayoutWrapper
breadCrumbs={breadCrumbs}
pageID={PAGES_URL.work.kooperativa}
goBackLink="work"
sectionID={ID.section.react}
projectData={projectsWorkReact[2]}
sections={sections}
nextPageNavigation={
<NextPageNavigation
pageLinkPrevious="/work-experience/komercni-banka"
pageNamePrevious="Komerční banka"
dataTestIDPrevious="page-navigation-previous-komercni-banka"
pageLinkNext="/work-experience/smartsupp-web"
pageNameNext="Smartsupp Web"
dataTestIDNext="page-navigation-next-smartsupp-web"
/>
}
/>
)
}

export default ProjectWorkKooperativa
6 changes: 3 additions & 3 deletions app/work-experience/smartsupp-web/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ const ProjectWorkSmartsuppWeb = () => {
sections={sections}
nextPageNavigation={
<NextPageNavigation
pageLinkPrevious="/work-experience/komercni-banka"
pageNamePrevious="Komerční banka"
dataTestIDPrevious="page-navigation-previous-komercni-banka"
pageLinkPrevious="/work-experience/kooperativa"
pageNamePrevious="Kooperativa"
dataTestIDPrevious="page-navigation-previous-kooperativa"
pageLinkNext="/work-experience/smartsupp-help"
pageNameNext="Smartsupp HELP"
dataTestIDNext="page-navigation-next-smartsupp-help"
Expand Down
21 changes: 21 additions & 0 deletions data/projects/work/kooperativa.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import type { SectionItem } from '@/utils/types'

export const sections: SectionItem[] = [
{
title: 'My job',
titleHighlight: '',
items: [
'I worked for Kooperativa, the 2nd biggest insurance company in the Czech Republic, owned by Vienna Insurance Group.',
'I was involved in the development of application that will improve services and customer experience of over 2 480 000+ customers.',
],
},
{
title: 'Developed new features',
titleHighlight: '',
items: [
'I worked with TypeScript, React, and Redux. I used Figma designs to develop a user interface. I also worked with a backend developer to ensure API integration.',
'I was part of team to create comprehensive solution for arranging and managing insurance contracts.',
'The application is designed to enhance the customer experience while providing employees with a modern system that simplifies their work.',
],
},
]
31 changes: 31 additions & 0 deletions data/projects/work/projectsOverview.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {
iconsSkillsProjectsWorkGroupon,
iconsSkillsProjectsWorkKomercniBanka,
iconsSkillsProjectsWorkKooperativa,
iconsSkillsProjectsWorkMoravia,
iconsSkillsProjectsWorkSmartsuppDashboard,
iconsSkillsProjectsWorkSmartsuppHelp,
Expand Down Expand Up @@ -36,6 +37,12 @@ import komercniBanka3 from '@/public/images/projects-work/komercni-banka/komercn
import komercniBanka4 from '@/public/images/projects-work/komercni-banka/komercni-banka-4-light.png'
import komercniBankaThumb from '@/public/images/projects-work/komercni-banka/komercni-banka-thumb-light-600.webp'

// kooperativa
import kooperativa1 from '@/public/images/projects-work/kooperativa/kooperativa-1-light.png'
import kooperativa2 from '@/public/images/projects-work/kooperativa/kooperativa-2-light.png'
import kooperativa3 from '@/public/images/projects-work/kooperativa/kooperativa-3-light.png'
import kooperativaThumb from '@/public/images/projects-work/kooperativa/kooperativa-thumb-light-600.webp'

// smartsupp-help
import smartsuppHelp1 from '@/public/images/projects-work/smartsupp-help/smartsupp-help-1-light.png'
import smartsuppHelp2 from '@/public/images/projects-work/smartsupp-help/smartsupp-help-2-light.png'
Expand Down Expand Up @@ -122,6 +129,30 @@ export const projectsWorkReact: Project[] = [
customers: '2 000 000+',
linkProjectPage: PAGES_URL.work.komercniBanka,
},
{
id: PROJECT_ID.work.kooperativa,
isFeatured: false,
image: kooperativaThumb.src,
imageShowcase: [kooperativa1.src, kooperativa2.src, kooperativa3.src],
title: '☔ Insurance company app',
company: 'Kooperativa',
role: 'React Developer',
years: '8 months',
description: 'I worked on an application for managing insurance policies for citizens property and products.',
mySkillsIcons: iconsSkillsProjectsWorkKooperativa,
mySkills: [
{
description: 'Frontend',
skills: ['JavaScript', 'TypeScript', 'React', 'Redux', 'Tailwind CSS'],
},
{ description: 'Design', skills: ['Figma', 'Storybook'] },
{ description: 'Other', skills: ['Jira', 'Confluence'] },
],
linkText: 'Project details',
projectLinks: [{ urlText: 'Website →', url: 'https://www.koop.cz/pojisteni/pojisteni-majetku' }],
customers: '2 480 000+',
linkProjectPage: PAGES_URL.work.kooperativa,
},
]

export const projectsWorkFrontEnd: Project[] = [
Expand Down
10 changes: 10 additions & 0 deletions data/skills/skills-projects-work.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
import { generateIconsSkills } from '@/utils/generateIconsSkills'

export const iconsSkillsProjectsWorkKooperativa = generateIconsSkills([
'js',
'ts',
'react',
'redux',
'tailwind',
'figma',
'storybook',
])

export const iconsSkillsProjectsWorkSmartsuppDashboard = generateIconsSkills([
'js',
'ts',
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
18 changes: 12 additions & 6 deletions utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export const CONTACT = {

export const PROJECT_ID = {
work: {
kooperativa: 'link-project-work-kooperativa',
smartsupp: {
dashboard: 'link-project-work-smartsupp-dashboard',
web: 'link-project-work-smartsupp-web',
Expand Down Expand Up @@ -79,19 +80,24 @@ export const EXTERNAL_URL = {
const URL_WORK_EXPERIENCE = '/work-experience'
const URL_PERSONAL_PROJECTS = '/personal-projects'

const generateUrlWorkExperience = (company: string) => {
return `${URL_WORK_EXPERIENCE}/${company}`
}

export const PAGES_URL = {
home: '/',
aboutMe: '/about-me',
work: {
main: URL_WORK_EXPERIENCE,
kooperativa: generateUrlWorkExperience('kooperativa'),
smartsupp: {
dashboard: `${URL_WORK_EXPERIENCE}/smartsupp-dashboard`,
web: `${URL_WORK_EXPERIENCE}/smartsupp-web`,
help: `${URL_WORK_EXPERIENCE}/smartsupp-help`,
dashboard: generateUrlWorkExperience('smartsupp-dashboard'),
web: generateUrlWorkExperience('smartsupp-web'),
help: generateUrlWorkExperience('smartsupp-help'),
},
komercniBanka: `${URL_WORK_EXPERIENCE}/komercni-banka`,
groupon: `${URL_WORK_EXPERIENCE}/groupon`,
moravia: `${URL_WORK_EXPERIENCE}/moravia`,
komercniBanka: generateUrlWorkExperience('komercni-banka'),
groupon: generateUrlWorkExperience('groupon'),
moravia: generateUrlWorkExperience('moravia'),
},
personal: {
main: URL_PERSONAL_PROJECTS,
Expand Down

0 comments on commit 449a33c

Please sign in to comment.