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()
}