top of page

Choose your pricing plan

  • ADULTS Annual Plan

    30$
    Every week
    Note: Trial period excludes gym & training access beyond class times.
    Valid for 52 weeks+ 7 day free trial
    • Unlimited access to our daily classes and our gym
  • ADULTS 6 Month Plan

    35$
    Every week
    Note: Trial period excludes gym & training access beyond class times.
    Valid for 26 weeks+ 5 day free trial
    • Unlimited access to our classes and the gym
  • ADULTS 3 Month Plan

    40$
    Every week
    Note: Trial period excludes gym & training access beyond class times.
    Valid for 13 weeks+ 3 day free trial
    • Unlimited access to our classes and the gym
  • KIDS Annual Plan

    30$
    Every week
    Full access to all kids Kickboxing classes & Athletic classes
    Valid for 52 weeks+ 7 day free trial
    • KIDS Athletic class aged 5 to 14 years
    • KIDS Kickboxing Advanced Class
    • KIDS Kickboxing Beginner Class 5-8 years
    • Teenagers Kickboxing & Muay Thai
  • KIDS 6 Month Plan

    35$
    Every week
    Full access to all kids Kickboxing classes & Athletic classes
    Valid for 26 weeks+ 7 day free trial
    • KIDS 2 Month Plan

      45$
      Every week
      Full access to all kids Kickboxing classes & Athletic classes
      Valid for 9 weeks
      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); }); }); }