-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(data): π· objects into data files (#174)
- Loading branch information
1 parent
a1975fa
commit 5151557
Showing
32 changed files
with
449 additions
and
432 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * from './personalNext' | ||
export * from './personalReact' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import { iconsSkillsProjectsPersonalKrsiak } from '@/data/skills/skillsProjectsPersonal' | ||
import { Project } from '@/utils/interfaces' | ||
|
||
// project images | ||
import krsiak1 from '@/public/images/projects-personal/krsiak/krsiak-1-light.png' | ||
import krsiak2 from '@/public/images/projects-personal/krsiak/krsiak-2-light.png' | ||
import krsiak3 from '@/public/images/projects-personal/krsiak/krsiak-3-light.png' | ||
import krsiak4 from '@/public/images/projects-personal/krsiak/krsiak-4-light.png' | ||
import krsiak5 from '@/public/images/projects-personal/krsiak/krsiak-5-light.png' | ||
import krsiakThumb from '@/public/images/projects-personal/krsiak/krsiak-thumb-light-600.webp' | ||
|
||
import { PAGES_URL, PROJECT_ID } from '@/utils/constants' | ||
|
||
export const projectsPersonalNext: Project[] = [ | ||
{ | ||
id: PROJECT_ID.personal.krsiak, | ||
isFeatured: true, | ||
image: krsiakThumb.src, | ||
imageShowcase: [ | ||
{ id: 1, src: krsiak1.src }, | ||
{ id: 2, src: krsiak2.src }, | ||
{ id: 3, src: krsiak3.src }, | ||
{ id: 4, src: krsiak4.src }, | ||
{ id: 5, src: krsiak5.src }, | ||
], | ||
title: 'π¨βπ» Portfolio Website', | ||
company: 'Personal project', | ||
role: 'Front End - Next.js', | ||
description: | ||
'My personal portfolio website to showcase my work and skills. The\u00A0latest iteration of what I know and can code as React Developer.', | ||
mySkillsIcons: iconsSkillsProjectsPersonalKrsiak, | ||
skillsOverview: [ | ||
{ | ||
id: 1, | ||
description: 'Frontend', | ||
skillsList: ['JavaScript', 'TypeScript', 'React', 'Next.js', 'Tailwind CSS'], | ||
}, | ||
{ | ||
id: 2, | ||
description: 'Other', | ||
skillsList: ['JEST', 'Playwright', 'GitHub Actions', 'Netlify'], | ||
}, | ||
], | ||
linkText: 'Project details', | ||
projectLinks: [{ urlText: 'Website β', url: 'https://krsiak.cz/' }], | ||
linkGitHub: 'https://github.com/krsiakdaniel/portfolio-website-krsiak-cz', | ||
linkProjectPage: PAGES_URL.personal.krsiak, | ||
}, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.