private async Task <Geolocation> FindGeolocation()
        {
            logger.LogInformation("Finding geolocation...");
            var geolocation = await geolocator.Get();

            logger.LogInformation($"Located. TZ: {geolocation.TimeZone} " +
                                  $"Lat: {geolocation.Latitude} " +
                                  $"Long: {geolocation.Longitude}");
            return(geolocation);
        }