@@ -4,10 +4,12 @@ import nssLogo from '../../../assets/images/nss-logo.png';
44import  setronicaLogo  from  '../../../assets/images/setronica-logo.png' ; 
55import  catawikiLogo  from  '../../../assets/images/catawiki-logo.svg' ; 
66import  tradeshiftLogo  from  '../../../assets/images/tradeshift-logo.svg' ; 
7+ import  miroLogo  from  '../../../assets/images/miro-logo.svg' ; 
78
89export  enum  Position  { 
910	Fullstack , 
10- 	Frontend 
11+ 	FrontendL1 , 
12+ 	FrontendL2 
1113} 
1214
1315export  interface  ProjectItem  { 
@@ -38,7 +40,7 @@ const getSetronica = (): ProjectItem => ({
3840	logo : setronicaLogo , 
3941	url : 'https://setronica.com' , 
4042	tags : [ 'React' ,  'Angular' ,  'NodeJS' ] , 
41- 	position : Position . Frontend , 
43+ 	position : Position . FrontendL1 , 
4244	startDate : '01-09-2016' , 
4345	endDate : '01-06-2021' 
4446} ) ; 
@@ -48,7 +50,7 @@ const getTradeshift = (): ProjectItem => ({
4850	logo : tradeshiftLogo , 
4951	url : 'https://tradeshift.com' , 
5052	tags : [ 'React' ,  'Angular' ,  'NodeJS' ] , 
51- 	position : Position . Frontend , 
53+ 	position : Position . FrontendL1 , 
5254	startDate : '01-09-2016' , 
5355	endDate : '01-06-2021' 
5456} ) ; 
@@ -58,11 +60,22 @@ const getCatawiki = (): ProjectItem => ({
5860	logo : catawikiLogo , 
5961	url : 'https://www.catawiki.com' , 
6062	tags : [ 'React' ,  'k8s' ,  'NodeJS' ] , 
61- 	position : Position . Frontend , 
62- 	startDate : '01-07-2021' 
63+ 	position : Position . FrontendL1 , 
64+ 	startDate : '01-07-2021' , 
65+ 	endDate : '31-10-2022' 
66+ } ) ; 
67+ 
68+ const  getMiro  =  ( ) : ProjectItem  =>  ( { 
69+ 	name : 'Miro' , 
70+ 	logo : miroLogo , 
71+ 	url : 'https://www.miro.com' , 
72+ 	tags : [ 'React' ,  'NextJS' ] , 
73+ 	position : Position . FrontendL2 , 
74+ 	startDate : '01-11-2022' 
6375} ) ; 
6476
6577export  const  getWorkProjects  =  ( ) : ProjectItem [ ]  =>  [ 
78+ 	getMiro ( ) , 
6679	getCatawiki ( ) , 
6780	getTradeshift ( ) , 
6881	getSetronica ( ) , 
0 commit comments