-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/staging'
- Loading branch information
Showing
46 changed files
with
684 additions
and
524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
module.exports = { | ||
types: [ | ||
{ types: ['feat', 'feature'], label: '🎉 Nouvelle fonctionalité' }, | ||
{ types: ['fix', 'bugfix'], label: '🐛 Réparation de bug' }, | ||
{ types: ['improvements', 'enhancement'], label: '🔨 Amélioration' }, | ||
{ types: ['build', 'ci'], label: '🏗️ Déploiement' }, | ||
{ types: ['refactor'], label: '🪚 Réamenagement de code' }, | ||
{ types: ['perf'], label: '🏎️ Amélioration de performance' }, | ||
{ types: ['doc', 'docs'], label: '📚 Changement de documentation' }, | ||
{ types: ['test', 'tests'], label: '🔍 Tests' }, | ||
{ types: ['style'], label: '💅 Style de code' }, | ||
{ types: ['chore'], label: '🧹 Nettoyage' }, | ||
{ types: ['other'], label: 'Autres changements' }, | ||
{ types: ["feat", "feature"], label: "🎉 Nouvelle fonctionalité" }, | ||
{ types: ["fix", "bugfix"], label: "🐛 Réparation de bug" }, | ||
{ types: ["improvements", "enhancement"], label: "🔨 Amélioration" }, | ||
{ types: ["build", "ci"], label: "🏗️ Déploiement" }, | ||
{ types: ["refactor"], label: "🪚 Réamenagement de code" }, | ||
{ types: ["perf"], label: "🏎️ Amélioration de performance" }, | ||
{ types: ["doc", "docs"], label: "📚 Changement de documentation" }, | ||
{ types: ["test", "tests"], label: "🔍 Tests" }, | ||
{ types: ["style"], label: "💅 Style de code" }, | ||
{ types: ["chore"], label: "🧹 Nettoyage" }, | ||
{ types: ["other"], label: "Autres changements" }, | ||
], | ||
|
||
excludeTypes: ['other', 'perf', 'test', 'tests', 'style', 'chore', 'doc', 'docs'], | ||
excludeTypes: [ | ||
"other", | ||
"perf", | ||
"test", | ||
"tests", | ||
"style", | ||
"chore", | ||
"doc", | ||
"docs", | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,22 @@ | ||
.filter-buttons-container { | ||
.loading-container { | ||
display: flex; | ||
justify-content: center; | ||
gap: 15px; | ||
margin-bottom: 30px; | ||
} | ||
|
||
.filter-button { | ||
background-color: #f7f7f7; | ||
border: 2px solid #ccc; | ||
padding: 10px 20px; | ||
font-size: 16px; | ||
font-weight: bold; | ||
cursor: pointer; | ||
transition: all 0.3s ease; | ||
border-radius: 25px; | ||
color: #333; | ||
} | ||
|
||
.filter-button:hover { | ||
background-color: #2196f3; | ||
color: white; | ||
border-color: #2196f3; | ||
transform: translateY(-3px); | ||
align-items: center; | ||
height: 100vh; | ||
border-radius: 10px; | ||
box-shadow: 0 0 20px rgba(62, 111, 225, 0.6), 0 0 50px rgba(62, 111, 225, 0.4); | ||
animation: neon-glow 1.5s ease-in-out infinite alternate; | ||
} | ||
|
||
.filter-button.active { | ||
background-color: #2196f3; | ||
color: white; | ||
border-color: #2196f3; | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
@keyframes neon-glow { | ||
from { | ||
box-shadow: 0 0 20px rgba(62, 111, 225, 0.6), 0 0 50px rgba(17, 0, 255, 0.4); | ||
} | ||
to { | ||
box-shadow: 0 0 30px rgba(62, 111, 225, 0.6), 0 0 60px rgba(17, 0, 255, 0.4); | ||
} | ||
} | ||
|
||
.graph-container { | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
background-color: white; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); | ||
.clip-loader { | ||
border-color: #0ff; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[ | ||
"Eric", | ||
"Emmanuel", | ||
"Zoé", | ||
"Anne", | ||
"Mihoub", | ||
"Fred", | ||
"Julia", | ||
"Victor", | ||
"Yann", | ||
"Jeremy", | ||
"Mialy", | ||
"Hafsa", | ||
"Alexandra" | ||
] | ||
"Eric", | ||
"Emmanuel", | ||
"Zoé", | ||
"Anne", | ||
"Mihoub", | ||
"Fred", | ||
"Julia", | ||
"Victor", | ||
"Yann", | ||
"Jeremy", | ||
"Mialy", | ||
"Hafsa", | ||
"Alexandra" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 2 additions & 6 deletions
8
...lications/contributor-production-info.tsx → ...tion-page/contributor-production-info.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.