use actix_web::{get, Responder};
#[get("/gaming")]
async fn page() -> impl Responder {
// TODO
actix_web::web::Redirect::to("/")
}