- GitHub Links
Milestones - with JSON
Demonstrate the highlights of your career by adding Milestones to your Profile. This could be when you got your first job or reaching 100k followers/subscribers.

Add Milestone
- Find your
jsonfile in thedatafolder using your GitHub username, for exampledata/sarajaoude.json
If you need help on how to edit this file, please see the Editing Guide
- Add a collection called
milestonesat the root of yourjsonfile which will contain one or more social objects. Each social object must have six fields,title,date,icon,descriptionandurl, which will look like this:
{
"title": "Started Freelancing",
"date": "5/2/2023",
"icon": "FaDollarSign",
"description": "Started my own business",
"url": "https://www.eddiejaoude.io/"
}| Property | Required | Description |
|---|---|---|
| title | true | Main heading of the milestone |
| date | true | Day/Month/Year |
| icon | true | What icon would you like displayed with this milestone |
| description | true | More details about the milestone, this can include markdown |
| url | true | Where can people learn more about the milestone |
| isGoal | false | If this is a future goal |
This is what a complete example looks like:
"milestones": [
{
"title": "Started Freelancing",
"date": "5/2/2023",
"icon": "FaDollarSign",
"description": "Started my own business",
"url": "https://www.eddiejaoude.io/"
}
]- Now you can commit your file and create a Pull Request, for more details please see Editing Guide