top of page
WechatIMG66.jpeg

TAKE A CLASS

Choose Your Workour

Classes: Classes
WechatIMG30.jpeg

MMA

Find Your Strength

Our Monday MMA class will get you sweating! Under the leadership of coach Garreth you can learn technique and get some hands-on experience that will help you within the octagon and the real world. Not for the faint of heart!

MUAY THAI KICKBOXING

Surpass Your Goals

Our kickboxing classes are all taught by real champiion fighters who know how to best defeat your opponents. We offer Beginner and Advanced classes with a sparring session each Friday to cement the knowledge learned in the past week.

WechatIMG16.jpeg
WechatIMG37.jpeg

PERSONAL TRAINING

Time to Shred

Join us for a personalized class and train your way to a healthy body and mind. We'll teach you techniques to build a strong body from which one can transition into more advanced stages, including a diversity of coordination and modifications to suit a range of difficulties, from beginner to advanced. Book now, and treat yourself today — you deserve it!

YOGA

Find Your Core

This class is sure to become your next obsession. It’s based around the belief that mental and physical health are interrelated, and should be conditioned together. That's why during this class we work on our flexibilty while also incorporating weights to get that sweat dripping. It's also a great addition to the training regime of anyone - whether you are a fighter, athlete or just want to start the journey to become a healthier self.

Image by kike vega
bottom of page
import wixData from 'wix-data'; export function button1_click(event) { let file = $w("#uploadButton").value[0]; let url = await uploadFile(file); let memberId = wixUsers.currentUser.id; wixData.get("Members", memberId) .then((member) => { member.profilePhoto = url; return member.save(); }) .catch((err) => { console.log(err); }); } function uploadFile(file) { return new Promise((resolve, reject) => { let name = file.name; let type = file.type; let size = file.size; wixData.getUploadUrl() .then((uploadUrl) => { return fetch(uploadUrl, { method: "PUT", headers: { "Content-Type": type, "Content-Length": size }, body: file }); }) .then((response) => { if (response.ok) { resolve(name); } else { reject(response.statusText); } }) .catch((err) => { reject(err); }); }); }