diff --git a/crates/ascend/src/components/header.rs b/crates/ascend/src/components/header.rs index cd1ada1..5de0423 100644 --- a/crates/ascend/src/components/header.rs +++ b/crates/ascend/src/components/header.rs @@ -16,17 +16,21 @@ pub fn Header(items: HeaderItems) -> impl IntoView { let HeaderItems { left, middle, right } = items; view! { -
+
// Left side of header - - - // Expanding space in the middle -
- +
+
+ // Expanding space in the middle +
+ +
+ // Right side of header - +
+ +
} } diff --git a/crates/ascend/src/pages/edit_wall.rs b/crates/ascend/src/pages/edit_wall.rs index 6b69dac..28d95b7 100644 --- a/crates/ascend/src/pages/edit_wall.rs +++ b/crates/ascend/src/pages/edit_wall.rs @@ -25,11 +25,11 @@ pub fn EditWall() -> impl leptos::IntoView { let header_items = HeaderItems { left: vec![HeaderItem { - text: "← ".to_string(), + text: "← Ascend".to_string(), link: Some("/wall".to_string()), }], middle: vec![HeaderItem { - text: "Edit wall".to_string(), + text: "EDIT WALL".to_string(), link: None, }], right: vec![],