use axum::{ response::Html, routing::get, Router, }; use crate::state::AppState; pub fn routes() -> Router { Router::new().route("/", get(web_ui)) } async fn web_ui() -> Html<&'static str> { Html(WEB_HTML) } const WEB_HTML: &str = r##" Warzone WARZONE end-to-end encrypted messenger Generate Identity Recover Recover Identity Your fingerprint: SAVE YOUR SEED — only way to recover your identity Enter Chat → ▶ "##;