Since the posterior for A and the posterior for B are both normal, the posterior for the difference is also normal with mean and standard deviation:
post_mean_diff <- post_mean_B - post_mean_A
post_sd_diff <- sqrt(post_sd_B^2 + post_sd_A^2)
Once we have the distribution for the difference in the mean time-on-site, we can compute the probability that the mean of B is greater than the mean of A.
1-pnorm(0, mean=post_mean_diff, sd=post_sd_diff)
## [1] 0.6311218
It is up to the decision maker to decide whether they would like to use version B knowing that there is a 63% change that B is better than A. This depends on how costly it is to deploy B.