Skip to content

Commit 3d7e26f

Browse files
glalloueutarwyn
andauthored
Add section to present projects of the collective (#112)
Co-authored-by: utarwyn <utarwyn@users.noreply.github.com>
1 parent f9ceb92 commit 3d7e26f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1609
-584
lines changed

doc/update_technologies.md

Lines changed: 0 additions & 43 deletions
This file was deleted.

public/img/tech/android.webp

-2.29 KB
Binary file not shown.
-2.08 KB
Binary file not shown.

public/img/tech/csharp.webp

-2.12 KB
Binary file not shown.

public/img/tech/ios.webp

-1.13 KB
Binary file not shown.

public/img/tech/java.webp

-3.4 KB
Binary file not shown.
-1.61 KB
Binary file not shown.

public/img/tech/php.webp

-3.49 KB
Binary file not shown.

public/img/tech/python.webp

-2.93 KB
Binary file not shown.

src/assets/data/projects.ts

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
import CreedengoLogo from "@/assets/img/projects/creedengo.svg?component";
2+
import EcoSonarLogo from "@/assets/img/projects/ecosonar.svg?component";
3+
import GreenCodeRulesLogo from "@/assets/img/projects/green-code-rules.svg?component";
4+
5+
export const projects = {
6+
creedengo: {
7+
title: "Creedengo",
8+
subTitle: "Anciennement ecoCode",
9+
description:
10+
"Collection de plugins SonarQube pour identifier les problèmes d'éco-conception dans votre code source",
11+
githubLink:
12+
"https://github.com/orgs/green-code-initiative/repositories?q=creedengo",
13+
logoComponent: CreedengoLogo,
14+
type: "Outils d'analyse",
15+
status: "published",
16+
hero: {
17+
variant: "neutral",
18+
secondButton: undefined,
19+
},
20+
},
21+
ecosonar: {
22+
title: "EcoSonar",
23+
subTitle: undefined,
24+
description:
25+
"Outil d'audit éco-conception combinant analyse statique et dynamique pour réduire l'impact environnemental des applications web",
26+
githubLink: "https://github.com/green-code-initiative/EcoSonar",
27+
logoComponent: EcoSonarLogo,
28+
type: "Outils d'analyse",
29+
status: "published",
30+
hero: {
31+
variant: "primary",
32+
secondButton: undefined,
33+
},
34+
},
35+
creedengoDashboard: {
36+
title: "Creedengo Dashboard",
37+
subTitle: "Anciennement Greensight, développé par Capgemini",
38+
description:
39+
"Tableau de bord de visualisation des métriques d'éco-conception pour prioriser les améliorations et prévenir les régressions",
40+
githubLink: "https://github.com/green-code-initiative/creedengo-dashboard",
41+
logoComponent: CreedengoLogo,
42+
type: "Tableau de bord",
43+
status: "draft",
44+
hero: {
45+
variant: undefined,
46+
secondButton: {
47+
text: "Voir le design system",
48+
link: "https://green-code-initiative.github.io/creedengo-dashboard/",
49+
type: "external_link",
50+
variant: "black",
51+
},
52+
},
53+
},
54+
greenCodeRules: {
55+
title: "Green Code Rules",
56+
subTitle: undefined,
57+
description:
58+
"Référentiel de bonnes pratiques d'éco-conception logicielle correspondant aux règles des plugins Creedengo",
59+
githubLink:
60+
"https://github.com/green-code-initiative/creedengo-rules-specifications",
61+
logoComponent: GreenCodeRulesLogo,
62+
type: "Documentation",
63+
status: "draft",
64+
hero: {
65+
variant: "secondary",
66+
secondButton: {
67+
text: "Explorer les règles",
68+
link: "/rules",
69+
variant: "black",
70+
},
71+
},
72+
},
73+
} as const;

0 commit comments

Comments
 (0)