export const siteUrl = function () {
const { protocol, host } = window.location;
return `${protocol}//${host}`;
}()