Uomo
Heritage craftsmanship meets modern performance.
UomoSport champions a timeless aesthetic rooted in the heritage of tennis, redefined through precision, quality, and innovation. We partner with master artisans and source premium Italian fabrics, ensuring that each garment meets a gold standard of performance and elegance.
Our mission is to marry technical function with refined style so you feel confident, comfortable, and composed whether you're swinging at match point or walking the streets afterward. Each collection draws from tennis’s storied past while pushing the boundaries of modern design and luxury.
Explore the UomoSport collection and experience where craftsmanship elevates every serve.
{
loading = true;
const params = new URLSearchParams(window.location.search);
const newParams = new URLSearchParams(new FormData($refs.filter_form));
newParams.set('page', 1);
newParams.set('filter.v.availability', 1);
if(params.get('sort_by')){
newParams.set('sort_by', params.get('sort_by'));
}
fetch(`/collections/uomo?${newParams.toString()}`)
.then(response => response.text())
.then(data => {
let html_div = document.createElement('div');
html_div.innerHTML = data;
// update product grid view
let html_dom = html_div.querySelector('#ProductGridContainer').innerHTML;
document.querySelector('#ProductGridContainer').innerHTML = html_dom;
// update filter view
let filters_dom = html_div.querySelector('#ProductFilters').innerHTML;
document.querySelector('#ProductFilters').innerHTML = filters_dom;
document.title = html_div.querySelector('title').textContent;
// update url without refreshing the page
history.replaceState(null, null, '?' + newParams.toString());
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})"
>