summary refs log tree commit diff stats
path: root/src/pages/not_found.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-03-19 07:45:14 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-03-19 07:45:14 +0100
commitf6a3fb9c4d8dd86f78c9f75a23c1ac35bf35d4eb (patch)
tree5f28fbca03d83921b568f7cb1708374456d9ec42 /src/pages/not_found.rs
parentfeat(treewide): Add further buttons (diff)
downloadweb-client-f6a3fb9c4d8dd86f78c9f75a23c1ac35bf35d4eb.zip
feat(treewide): Commit MVP
Diffstat (limited to 'src/pages/not_found.rs')
-rw-r--r--src/pages/not_found.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/pages/not_found.rs b/src/pages/not_found.rs
index 7b5c127..2adb598 100644
--- a/src/pages/not_found.rs
+++ b/src/pages/not_found.rs
@@ -1,6 +1,11 @@
 use leptos::{IntoView, component, prelude::ElementChild, view};
 
+use crate::components::site_header::SiteHeader;
+
 #[component]
 pub fn NotFound() -> impl IntoView {
-    view! { <h1>"Uh oh!" <br /> "We couldn't find that page!"</h1> }
+    view! {
+        <SiteHeader logo=icondata_io::IoRoseSharp back_location="/" name="Not Found" />
+        <h1>"Uh oh!" <br /> "We couldn't find that page!"</h1>
+    }
 }