feat: add page system behing navbar items and skeletons for loading
This commit is contained in:
10
crates/app/src/pages/home.rs
Normal file
10
crates/app/src/pages/home.rs
Normal file
@ -0,0 +1,10 @@
|
||||
use askama::Template;
|
||||
use askama_axum::IntoResponse;
|
||||
|
||||
#[derive(Template)]
|
||||
#[template(path = "pages/home.html")]
|
||||
struct HomeResponse;
|
||||
|
||||
pub async fn home() -> impl IntoResponse {
|
||||
HomeResponse.into_response()
|
||||
}
|
Reference in New Issue
Block a user