Skip to content

Commit 80fdb59

Browse files
committed
Changed 404 page
1 parent aef7a4e commit 80fdb59

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/pages/not_found.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@ use leptos::prelude::*;
33
/// 404 Not Found Page
44
#[component]
55
pub fn NotFound() -> impl IntoView {
6-
view! { <h1>"Uh oh!" <br /> "We couldn't find that page!"</h1> }
6+
view! {
7+
<h1>"404: Page not found"</h1>
8+
<h2>"We couldn't find that page!"</h2>
9+
}
710
}

0 commit comments

Comments
 (0)