OUXX Footwear

In the realm of safety footwear, OUXXFootwear stands as a beacon of innovation, craftsmanship, and customer-centric excellence.

Our story began in 2004 when a group of visionaries set out to redefine the industry, establishing a factory that would not only produce protective work boots but also enhance the well-being of those who wear them.Our founders saw a clear need in the market for safety shoes that went beyond mere protection. They envisioned a brand that would prioritize the comfort and security of workers, ensuring that they could perform their duties with confidence and ease. This vision gave birth to OUXXFootwear, a brand that has since become synonymous with quality and innovation.Since our inception, we have been relentless in our pursuit of excellence.

We are improving

From 2016 onwards, we have dedicated ourselves to pushing the boundaries of what is possible in the world of safety footwear. Our commitment to innovation and creativity has led us to invest heavily in research and development, resulting in over 100 patents that have transformed the way we approach the design and manufacturing of our products.

In the United States, our presence is further solidified by our own warehouse located at 18128 Kieth Harrow Boulevard, Unit D, Houston, Texas 77084. This state-of-the-art facility serves as a centralized hub for storing and distributing our high-quality products. With ample space and advanced logistics systems, we ensure that our inventory is managed efficiently, and orders are fulfilled promptly.

Our warehouse is meticulously organized, allowing for seamless access and retrieval of products. Advanced security measures are in place to safeguard our inventory, and our dedicated team works tirelessly to maintain a smooth flow of goods. This commitment to excellence extends beyond our products, as we prioritize the safety and security of our customers' orders.

Our Purpose

At the heart of our brand is a deep-seated ethos of providing comfortable and safe footwear for individuals from all walks of life. We believe that everyone deserves the best protection and comfort while performing their duties, and it is this belief that drives us to constantly improve and innovate.

OUXXFootwear is more than just a brand; it is a testament to our unwavering dedication to the well-being of our customers and the relentless pursuit of excellence in everything we do.

Technology Innovation Leading the Way

more

Environmental, Social, and Corporate Governance

more

Intelligent Tech Enhances Safety & Efficiency

more
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1713802831051').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);