aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/src/js
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-10-28 14:55:20 +0200
committerArmand Philippot <git@armandphilippot.com>2021-10-28 14:58:46 +0200
commita108f00dbad01d1c02465811cd1bcc4176bf8f3a (patch)
treee9152d3c26ea09342ba779f757c6d6de2f105d1b /htdocs/src/js
parent24d4820427bc61b5af1f1324dbe8937d5026589a (diff)
chore(projects): add users list from js small apps
Diffstat (limited to 'htdocs/src/js')
-rw-r--r--htdocs/src/js/config/projects.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/htdocs/src/js/config/projects.js b/htdocs/src/js/config/projects.js
index 920abad..d9bb3a9 100644
--- a/htdocs/src/js/config/projects.js
+++ b/htdocs/src/js/config/projects.js
@@ -179,6 +179,26 @@ const projects = [
],
technologies: ['React', 'React router', 'Redux'],
},
+ {
+ id: 'users-list',
+ name: 'Users list',
+ description: {
+ en: 'You can see a list of username. By clicking on it, the next column display information about the selected user.',
+ fr: "Vous pouvez voir une liste de noms d'utilisateur. En cliquant sur l'un d'eux, la colonne suivante affiche les informations à propos de cet utilisateur.",
+ },
+ path: './projects/js-small-apps/users-list/index.html',
+ repo: [
+ {
+ name: 'Github',
+ url: 'https://github.com/ArmandPhilippot/js-small-apps/tree/main/users-list',
+ },
+ {
+ name: 'Gitlab',
+ url: 'https://gitlab.com/ArmandPhilippot/js-small-apps/-/tree/main/users-list',
+ },
+ ],
+ technologies: ['Vanilla Javascript', 'Fetch'],
+ },
];
export default projects;