-
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.
Ensure workExperiences is a .ts file and update imports
- Loading branch information
1 parent
01185b7
commit 1192962
Showing
1 changed file
with
53 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
export const workExperiences = [ | ||
{ | ||
company: "Solidaris", | ||
projects: [ | ||
{ | ||
id: "1", | ||
title: "e-Mut", | ||
description: "Description of Project 1", | ||
imageUrl: "https://placehold.co/600x400/png", | ||
}, | ||
{ | ||
id: "2", | ||
title: "ScanSequel", | ||
description: "Description of Project 2", | ||
imageUrl: "https://placehold.co/600x400/png", | ||
}, | ||
{ | ||
id: "3", | ||
title: "Project 3", | ||
description: "Description of Project 3", | ||
imageUrl: "https://placehold.co/600x400/png", | ||
}, | ||
], | ||
}, | ||
{ | ||
company: "Tobania", | ||
projects: [ | ||
{ | ||
id: "4", | ||
title: "Project 4", | ||
description: "Description of Project 4", | ||
imageUrl: "https://placehold.co/600x400/png", | ||
}, | ||
{ | ||
id: "5", | ||
title: "Project 5", | ||
description: "Description of Project 5", | ||
imageUrl: "https://placehold.co/600x400/png", | ||
}, | ||
], | ||
}, | ||
{ | ||
company: "Colruyt", | ||
projects: [ | ||
{ | ||
id: "6", | ||
title: "Project 6", | ||
description: "Description of Project 6", | ||
imageUrl: "https://placehold.co/600x400/png", | ||
}, | ||
], | ||
}, | ||
]; |