Sigrún
Victory, style, and sport reimagined for the modern court.
Sigrún is a New York–born premium apparel brand crafted for tennis and racquet-sport lovers who play with purpose and style. Named for the valkyrie Sigrún, a mythic warrior who embodies victory and resolve, the brand stands as a modern symbol of strength, grace, and competitive spirit.
As athletes ourselves, we design for you with an eye toward detail, performance, and elevated aesthetics. Sustainability is central to our mission; we balance premium materials and ethical practices, ensuring pieces are as responsible as they are refined. Whether you’re on court or in life, Sigrún is made to move with you and help you own every moment.
Discover the Sigrún collection and elevate your game with purpose.
{
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/sigrun?${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);
})"
>