From 6e10e3401e594fdb348197ac84c2141ef20b5a57 Mon Sep 17 00:00:00 2001 From: Death916 Date: Sat, 19 Apr 2025 03:19:10 -0700 Subject: [PATCH] updating projects --- deathsite/deathsite.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/deathsite/deathsite.py b/deathsite/deathsite.py index 3d76eb3..5c4f523 100644 --- a/deathsite/deathsite.py +++ b/deathsite/deathsite.py @@ -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 \ No newline at end of file +# TODO add a contact page or link