Hi, Why not have a simple html file that contains
- project title,
- description,
- shared by person,
- link (if applicable)
For simplicity we can have a json file that everyone needs to update while they are contributing to this repository
sample:
{
"projects": [
{
"title": "calculator",
"description": "simple html calculator",
"sharedby": "github username",
"link": "https://google.com"
},
{
"title": "todo list",
"description": "a simple todo list application built with JavaScript",
"sharedby": "another github username",
"link": "https://example.com"
}
]
}
The html file will fetch static data from json file and generate a webpage with these details.