Updated UI

This commit is contained in:
2025-07-15 20:28:29 +02:00
parent 5c0bb602f5
commit 39006435b2
11 changed files with 139 additions and 63 deletions

View File

@@ -21,7 +21,6 @@ async fn page(State(state): State<AppState>) -> Result<Markup, AppError> {
.await?;
let content = html! {
h1 { "Workouts" }
a href="/workouts/new" { "new workout +" }
div class="list" {
@for workout in workouts {
@@ -41,5 +40,5 @@ async fn page(State(state): State<AppState>) -> Result<Markup, AppError> {
}
};
Ok(layouts::desktop(content, "Workouts"))
Ok(layouts::desktop(content, "Browse Workouts", false))
}