-
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.
Merge pull request #6 from ZuliusRoolf/portfolio-json-structure
Portfolio json structure
- Loading branch information
Showing
3 changed files
with
66 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
{ | ||
"portrait": "URL_to_portrait_image", | ||
"name": "Zulius Roolf", | ||
"title": "Software Engineer Student", | ||
"workplace": "BTH", | ||
"links": [ | ||
{ | ||
"name": "LinkedIn", | ||
"link": "https://www.linkedin.com/in/johndoe", | ||
"icon": "linkedin" | ||
}, | ||
{ | ||
"name": "Twitter", | ||
"link": "https://twitter.com/johndoe", | ||
"icon": "twitter" | ||
}, | ||
{ | ||
"name": "GitHub", | ||
"link": "https://github.com/ZuliusRoolf", | ||
"icon": "content/icons/github.svg" | ||
} | ||
], | ||
"aboutMeText": "I am a Jack of all trades with strong proficency in the art of software development. This website has been created to track and showcase the different projects I have worked on over the years. I am always looking for new opportunities to learn and grow as a developer." | ||
"portrait": "URL_to_portrait_image", | ||
"name": "Zulius Roolf", | ||
"title": "Software Engineer Student", | ||
"workplace": "BTH", | ||
"links": [ | ||
{ | ||
"name": "LinkedIn", | ||
"link": "https://www.linkedin.com/in/johndoe", | ||
"icon": "linkedin" | ||
}, | ||
{ | ||
"name": "Twitter", | ||
"link": "https://twitter.com/johndoe", | ||
"icon": "twitter" | ||
}, | ||
{ | ||
"name": "GitHub", | ||
"link": "https://github.com/ZuliusRoolf", | ||
"icon": "content/icons/github.svg" | ||
} | ||
], | ||
"aboutMeText": "I am a Jack of all trades with strong proficency in the art of software development. This website has been created to track and showcase the different projects I have worked on over the years. I am always looking for new opportunities to learn and grow as a developer." | ||
} |
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,19 +1,30 @@ | ||
{ | ||
"portfolio": [ | ||
{ | ||
"title": "Project 1", | ||
"date": "January 2024", | ||
"description": "This is a description of Project 1.", | ||
"technologies": ["HTML", "CSS", "JavaScript"], | ||
"link": "http://example.com" | ||
}, | ||
{ | ||
"title": "Project 2", | ||
"date": "February 2024", | ||
"description": "This is a description of Project 2.", | ||
"technologies": ["React", "Node.js"], | ||
"link": "http://example.com" | ||
} | ||
] | ||
} | ||
|
||
"portfolio": [ | ||
{ | ||
"title": "Project 1", | ||
"year": "2024", | ||
"month": "January", | ||
"videoLink": "URL_to_video", | ||
"companyLogo": "content/icons/github.svg", | ||
"companyName": "GitHub", | ||
"collaborators": "John Doe", | ||
"descriptiveTitle": "A project that does something", | ||
"reason": "This project was created to solve a problem.", | ||
"projectHostName": "GitHub", | ||
"projectLink": "http://github.com" | ||
}, | ||
{ | ||
"title": "Project 2", | ||
"year": "2025", | ||
"month": "February", | ||
"videoLink": "URL_to_video", | ||
"companyLogo": "content/icons/github.svg", | ||
"companyName": "GitHub", | ||
"collaborators": "", | ||
"descriptiveTitle": "A project that does something", | ||
"reason": "This project was created to solve a problem.", | ||
"projectHostName": "GitHub", | ||
"projectLink": "http://github.com" | ||
} | ||
] | ||
} |