Make it look much better

Including dark mode!
This commit is contained in:
nora 2025-11-11 19:26:28 +01:00
parent 1d31b9c3fe
commit 310a24aa44
5 changed files with 52 additions and 26 deletions

View file

@ -286,6 +286,7 @@ async fn web_root(State(state): State<AppState>) -> impl IntoResponse {
nightlies: Vec<String>,
version: &'static str,
build_count: BuildStats,
notification_pr_url: String,
}
let targets = state.db.target_list().await?;
@ -297,6 +298,7 @@ async fn web_root(State(state): State<AppState>) -> impl IntoResponse {
nightlies,
version: crate::VERSION,
build_count,
notification_pr_url: notification::notification_pr_url(),
};
Ok(Html(page.render().unwrap()).into_response())