Pricing

No lock-in contracts or hidden conditions here. For those long-awaited holidays and busy life schedules, we can pause your weekly membership with three days’ written notice (just send an email to don@athleticreformer.com), and you can get back to the burn when it works for you.

Copyright 2025 Athletic Reformer. All rights reserved.

import { useEffect, useState } from "react"; export function Copyright() { const [year, setYear] = useState(new Date().getFullYear()); return (

© {year} Athletic Reformer. All rights reserved.

); }