Support Your Team

Oklahoma City Thunder

Indiana Pacers

Customer reviews

23 Reviews
Nicole R.

Hoodie fitted perfectly, felt nice & warm. Couldn't ask for a better price.

Rena' B

That's great, fits perfectly

Paul S.

I got my order and it totally exceeded my expectations! Such a great deal—I'm definitely planning to buy more pieces

Bailey N.

Great job...going to get a 2x next time.but the xl was perfect...Thank you

Amy R.

LOVE TANK TOP SZN IS HERE!

Diamon G

Loved the jacket it and friends ask where can they get one from

Thelma B.

Man, our Jackets were a hit! We will definitely order again!

David M.

I have ordered three times from this site , recomend

Detria M.

Great Quality and perfect fit!! I'm a customer for LIFE!

Haley C.

My order looks exactly as expected, it arrived on time, and the size chart was very accurate.

Faith H.

Back in the Bronx tonight 👏

Lesel L.

Family and football. It doesn’t get better than this!

Nicholas R.

We love these sweatshirts so much! They are super soft, comfy, high quality and look great.

William W.

I would order from this company all the time! I’m beyond pleased & overjoyed.

Shari L.

These T-shirt are great! Go Patriotsi!

View more
Rene A.

Everything is great. Will use them a 100%.

Charles C.

We are Viking fans ,so love these

Tra N.

A perfect match that puts me in the spotlight!

Taragee

Its win or go home, I like These products

Brandy D.

Loved it, good quality! I searched everywhere to find a good Rams sweatshirt. Warm fits.Every Rams fan should have one.

Culbertson C.

They never disappoint me!

Joshua G.

These BILLS shorts are fire! Love the fit and the design. Perfect for game days or just chilling with friends. Super comfy and great quality. Highly recommend them for any BILLS fan. Go team!

Valencia W.

I love ♥ best thing I have bought all year thanks

/** @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-1743999848583').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);