ui(page/works): add dexios
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
b3f2e41c7d
commit
91bc37e990
1 changed files with 11 additions and 1 deletions
|
@ -60,6 +60,7 @@ interface Work {
|
||||||
}
|
}
|
||||||
|
|
||||||
enum Role {
|
enum Role {
|
||||||
|
Collaborator = "collaborator",
|
||||||
Author = "author",
|
Author = "author",
|
||||||
TechLead = "tech lead",
|
TechLead = "tech lead",
|
||||||
TeamLead = "team lead",
|
TeamLead = "team lead",
|
||||||
|
@ -109,6 +110,15 @@ enum Status {
|
||||||
}
|
}
|
||||||
|
|
||||||
const CHRONOLOGICAL_WORKS: Work[] = [
|
const CHRONOLOGICAL_WORKS: Work[] = [
|
||||||
|
{
|
||||||
|
name: RepoLink("dexios", "github.com/brxken128/dexios"),
|
||||||
|
description:
|
||||||
|
"Dexios is a fast, secure, and open source command-line encryption tool.",
|
||||||
|
roles: [Role.Collaborator],
|
||||||
|
technologies: [Technology.Rust],
|
||||||
|
startDate: "2022",
|
||||||
|
statuses: [Status.ActiveDeveloped],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: RepoLink("paren", "/pleshevskiy/paren"),
|
name: RepoLink("paren", "/pleshevskiy/paren"),
|
||||||
description: "Library for parsing and rendering information.",
|
description: "Library for parsing and rendering information.",
|
||||||
|
@ -216,7 +226,7 @@ const CHRONOLOGICAL_WORKS: Work[] = [
|
||||||
roles: [Role.Author],
|
roles: [Role.Author],
|
||||||
technologies: [Technology.Rust],
|
technologies: [Technology.Rust],
|
||||||
startDate: "2019",
|
startDate: "2019",
|
||||||
statuses: [Status.PassivelyMaintained],
|
statuses: [Status.ActiveDeveloped],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: RepoLink("it-fsm", "/pleshevskiy/it-fsm"),
|
name: RepoLink("it-fsm", "/pleshevskiy/it-fsm"),
|
||||||
|
|
Loading…
Reference in a new issue