Visit the repository on github and click here
4. Look for the ISO code of your country, for example for Cameroon
it is cm
, for France
it is fr
... Once you have found it ...
It simply means that this one has not yet been added to our list, so you can write to me privately or you can follow this issue to add your country
This file contains an array of objects where each object represents a portfolio, so it will be for you to add an object to this table following the timeline ...
const cmData = [
...,
{
name: "John Doe",
link: "https://johndoe.com",
tags: ["FrontEnd", "Backend"],
socials: {
twitter: "johndoe",
github: "johndoe",
linkedin: "johndoe",
},
},
{
name: "Your name",
link: "https://your-website.com",
tags: ["", "", ...],
socials: {
twitter: "yourname",
github: "yourname",
linkedin: "yourname",
},
},
]
=>"name, link, tags" are mandatory !
=> Tags are not the technologies used but rather the areas in wich you are
=> Please, always add the "https://" on the link of your portfolio
=> On the social networks part, we don't want all the link to your profile, we just want the user-name (in the example below it's "johndoe")
twitter: "johndoe",
github: "johndoe",
linkedin: "johndoe",
=> If you do not want to fill in one of your social networks, please leave the field empty like this:
socials: {
twitter: "",
github: "johndoe",
linkedin: "",
},
Or
socials: {
twitter: "",
github: "",
linkedin: "",
},