Salute Her UK

Charity Number: 1195683
Contact: +44 (0)7931 948196
Address: The Town Hall, High Street East, Wallsend, North Tyneside
Postcode: NE28 7RR
Website: www.saluteher.co.uk
Summary:
Salute Her UK provides a physical and psychological safe zone where women can access needs led, holistic and trauma informed care in a single sex environment. Our services have been developed to address the growing needs of the increasing population of military women and women at sea that are transitioning to civilian life. We have adopted a holistic and trauma-informed approach, addressing both physical and mental health well-being, relationships and any wider psycho-social issues that affect a seamless transition to civilian life. By offering one to one or group support that is designed to ensure that women work towards self-identified best outcomes, we help foster post traumatic growth. At Salute Her UK we view women in the Armed Forces, veterans and women at sea as experts through experience, and therefore regularly consult with those we seek to serve.
Related Articles
Combat Stress
Contact details Website: https://combatstress.org.uk/ 24-hour Mental Health Helpline (Free): 0800 138 1619 Text: 07537 173 683 Email: helpline@combatstress.org.uk General enquiries / Head Office: 01372 587 000 Head Office Address: Tyrwhitt House, ...
Sailors’ Society
Contact details Website: https://sailors-society.org/ 24/7 support: Seafarers and family members can access free support through Sailors’ Society’s global helpline and instant chat service, available 24 hours a day, 7 days a week. Access is available ...
The Royal Homes (MN veterans served in conflict)
Charity Number: 210760 Contact: The Royal Homes Address: Queen Alexandra's Court, St Mary's Road, Wimbledon, London Postcode: SW19 7DE Phone: 0208 946 5182 Website: www.theroyalhomeswimbledon.org Email: Contact enquiry form on website Summary: To ...
Seafarers Hospital Society
Charity Number: 231724 Address: 4th Floor, Silverstream House, 45 Fitzroy Street,Fitzrovia,London Postcode: W1T 6EB Phone: 0208 8583696 Website: www.seahospital.org.uk Email: admin@seahospital.org.uk Summary: The Seafarers Hospital Society is ...
Blind Veterans UK
Charity Number: 216227 Address: 3 Queen Square , London Postcode: WC1N 3AR Phone: 0300 111 22 33 Website: www.blindveterans.org.uk Email: information@blindveterans.org.uk Summary: Blind Veterans UK helps ex-Service men and women of every generation ...
(function () {
'use strict';
// Only run on the KB root page
if (!/\/kb\/seafarer-support\/?$/.test(window.location.pathname)) return;
var CATEGORY_ID = '233149000000358041';
var MAX_WAIT_MS = 10000;
var POLL_INTERVAL_MS = 200;
var elapsed = 0;
function getStore() {
if (window.reduxStore) return window.reduxStore;
if (window._store) return window._store;
var all = document.querySelectorAll('*');
for (var i = 0; i < all.length; i++) {
var keys = Object.keys(all[i]);
for (var j = 0; j < keys.length; j++) {
if (keys[j].indexOf('__reactContainer') === 0) {
try { return all[i][keys[j]].child.memoizedProps.store; } catch (e) {}
}
}
}
return null;
}
function getPortalId() {
var resources = window.performance.getEntriesByType('resource');
for (var i = 0; i < resources.length; i++) {
var m = resources[i].name.match(/portalId=([^&]+)/);
if (m) return m[1];
}
return null;
}
var timer = setInterval(function () {
elapsed += POLL_INTERVAL_MS;
if (elapsed > MAX_WAIT_MS) { clearInterval(timer); return; }
var store = getStore();
if (!store) return;
var kb = store.getState().KBUIState;
if (!kb || !kb.subCategoryWithArticles || kb.subCategoryWithArticles.length === 0) return;
if (!kb.isNext) { clearInterval(timer); return; }
clearInterval(timer);
var portalId = getPortalId();
if (!portalId) return;
var base = window.location.origin + '/portal/api/kbCategory/' +
CATEGORY_ID + '/articles?portalId=' + portalId;
Promise.all([
fetch(base + '&from=1&limit=9').then(function (r) { return r.json(); }),
fetch(base + '&from=10&limit=9').then(function (r) { return r.json(); })
]).then(function (results) {
var sections = Object.values(results[0].data).concat(Object.values(results[1].data));
if (!sections.length) return;
store.dispatch({
type: 'KB_SUB_CATEGORIES_WITH_ARTICLES_BY_CATEGORY_SUCCESS',
data: { list: sections, categoryId: CATEGORY_ID, isNext: false, page: 1 }
});
}).catch(function () {});
}, POLL_INTERVAL_MS);
})();