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 {
|
||||
Collaborator = "collaborator",
|
||||
Author = "author",
|
||||
TechLead = "tech lead",
|
||||
TeamLead = "team lead",
|
||||
|
@ -109,6 +110,15 @@ enum Status {
|
|||
}
|
||||
|
||||
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"),
|
||||
description: "Library for parsing and rendering information.",
|
||||
|
@ -216,7 +226,7 @@ const CHRONOLOGICAL_WORKS: Work[] = [
|
|||
roles: [Role.Author],
|
||||
technologies: [Technology.Rust],
|
||||
startDate: "2019",
|
||||
statuses: [Status.PassivelyMaintained],
|
||||
statuses: [Status.ActiveDeveloped],
|
||||
},
|
||||
{
|
||||
name: RepoLink("it-fsm", "/pleshevskiy/it-fsm"),
|
||||
|
|
Loading…
Reference in a new issue