use axum::response::{Html, IntoResponse}; pub async fn geolocate() -> impl IntoResponse { Html( r#" Geo Demo

Location Service


  
"#, ) } // v2 // pub async fn geolocate() -> impl IntoResponse { // Html( // r#" // // // Geo Demo // //

//
//   
// 
// 
// "#,
//     )
// }

// v1
// pub async fn geolocate() -> impl IntoResponse {
//     // A minimal page that asks only after the user clicks.
//     Html(r#"
// 
// 
// Geo Demo
// 
//   

//
//   
// 
// 
// "#)
// }