updating projects

This commit is contained in:
Death916 2025-04-19 03:19:10 -07:00
parent 22931d7640
commit 6e10e3401e

View file

@ -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