mirror of
https://github.com/Death916/deathsite.git
synced 2026-04-10 03:04:41 -07:00
updating projects
This commit is contained in:
parent
22931d7640
commit
6e10e3401e
1 changed files with 14 additions and 4 deletions
|
|
@ -17,11 +17,17 @@ PROJECTS_DATA = [
|
|||
"description": "This site is a personal portfolio and blog.",
|
||||
"status": "Ongoing",
|
||||
"link": "github.com/Death916/deathsite",
|
||||
},
|
||||
},
|
||||
{
|
||||
"title": "Deathclock",
|
||||
"description": "Sports and weather clock and dashboard",
|
||||
"status": "Ongoing",
|
||||
"link": "github.com/Death916/deathclock",
|
||||
},
|
||||
{
|
||||
"title": "Death916's Guild",
|
||||
"description": "My guild page.",
|
||||
"status": "Ongoing",
|
||||
"status": "Planning",
|
||||
"link": "/guild",
|
||||
},
|
||||
]
|
||||
|
|
@ -255,7 +261,11 @@ def render_project(project: dict) -> rx.Component:
|
|||
rx.cond(
|
||||
project["status"] == "Completed", "green",
|
||||
rx.cond(
|
||||
project["status"] == "Planning", "yellow", "gray"
|
||||
project["status"] == "Planning", "yellow",
|
||||
rx.cond(
|
||||
project["status"] == "Paused", "red",
|
||||
"gray"
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
|
|
@ -340,4 +350,4 @@ app.add_page(videos)
|
|||
# TODO add guild page
|
||||
# TODO add unzip to requirements for system
|
||||
# TODO move project data to a json file or something
|
||||
# TODO add a contact page or link
|
||||
# TODO add a contact page or link
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue