-
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.
- Loading branch information
1 parent
e249b31
commit 552c39a
Showing
14 changed files
with
108 additions
and
60 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
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.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export const Footer = (): JSX.Element => { | ||
return ( | ||
<div className="flex items-center justify-center w-full h-24 bg-background text-text-secondary xs:w-10/12 md:w-3/4 xl:w-9/12 2xl:w-8/12 max-w-8xl"> | ||
<h4>Copyright © 2023 Karol Stawowski</h4> | ||
<h4>Copyright © 2024 Karol Stawowski</h4> | ||
</div> | ||
) | ||
} |
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,20 @@ | ||
import { ExperienceListElementProps } from '../components/Experience/ExperienceListElement' | ||
|
||
export const educationList: Array<ExperienceListElementProps> = [ | ||
{ | ||
id: 5, | ||
position: 'University of Economics in Katowice', | ||
company: 'Master of Computer Science', | ||
more: 'Programming of Intelligent Systems specialisation', | ||
since: new Date(2023, 9), | ||
to: new Date(2025, 6), | ||
}, | ||
{ | ||
id: 4, | ||
position: 'University of Economics in Katowice', | ||
company: 'Bachelor of Computer Science', | ||
more: 'Databases and Data Engineering specialisation', | ||
since: new Date(2020, 9), | ||
to: new Date(2023, 6), | ||
}, | ||
] |
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,31 @@ | ||
import { ExperienceListElementProps } from '../components/Experience/ExperienceListElement' | ||
|
||
export const experienceList: Array<ExperienceListElementProps> = [ | ||
{ | ||
id: 1, | ||
position: 'Frontend developer', | ||
company: 'INELO Poland', | ||
since: new Date(2024, 1), | ||
}, | ||
{ | ||
id: 2, | ||
position: 'Full Stack Developer', | ||
company: 'Night Woods', | ||
since: new Date(2023, 3), | ||
to: new Date(2024, 0), | ||
}, | ||
{ | ||
id: 3, | ||
position: 'Frontend Developer', | ||
company: 'Night Woods', | ||
since: new Date(2022, 2), | ||
to: new Date(2022, 9), | ||
}, | ||
{ | ||
id: 4, | ||
position: 'Intern Junior Frontend Developer', | ||
company: 'Tom&Co', | ||
since: new Date(2021, 7), | ||
to: new Date(2021, 8), | ||
}, | ||
] |
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.