top of page

KIDS' FIGHTER CLASS

Untitled

Become stronger while having fun!

Our unique fusion of fitness and fun classes will have your heart pumping in no time. These classes are for 5-12 year olds of any skill level. We have beginner and advanced classes available. Among its many benefits, participating helps improve coordination, reaction time, and memory. Sign up now!

YOUTH ATHLETICS

Surpass Your Goals

This class is sure to become your kids' next obsession. It’s based around the belief that mental and physical health are interrelated, and should be conditioned together. By combining fun and enjoyment with physical activity, we’re here to prove that exercise can be enjoyable for all ages.

HOLIDAY PROGRAM

Making the holidays more fun!

Improving technique and fitness at the same time all while making new friends sure sound like fun! Every term we offer full day as well as 90 minute sessions. A healthy lunch is also available. Sign up now or contact us for more information!

KIDS’ CLASSES

IMG_2967.HEIC

Stay fit while having fun!

Fit fun for the kids with classses taught by our pro fighter trainers all while getting to make lasting friendships in a close knit community sounds good? Kickboxing helps with flexibility and coordination just as much as with physical fitness and mental focus. Contact us for a free trial lesson!

IMG_3261.HEIC
Untitled
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); }); }); }