/* Loops — "Get Fit With ADHD" use-case page */ /* ---------------- Page nav (links back to the homepage) ---------------- */ const FIT_NAV_LINKS = [ { label: "Why it happens", href: "#why" }, { label: "How it works", href: "#how" }, { label: "Questions", href: "#faq" }, { label: "For ADHD", href: "/adhd/#directory" }, { label: "Knowledge Hub", href: "/adhd/knowledge-hub/" }, { label: "Blog", href: "/blog/" }, ]; const FitNav = () => { const [open, setOpen] = React.useState(false); const [scrolled, setScrolled] = React.useState(false); React.useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 8); onScroll(); window.addEventListener("scroll", onScroll, { passive: true }); return () => window.removeEventListener("scroll", onScroll); }, []); React.useEffect(() => { if (!open) return; const onKey = (e) => e.key === "Escape" && setOpen(false); document.body.style.overflow = "hidden"; document.addEventListener("keydown", onKey); return () => { document.body.style.overflow = ""; document.removeEventListener("keydown", onKey); }; }, [open]); return (
Loops
); }; /* ---------------- Hero ---------------- */ const HERO_BLOCKS = [ { title: "Make starting easier", body: "One daily action so the gap between planning and going actually closes.", icon: (), }, { title: "Break the boom-bust cycle", body: "Coaching through missed days so a pause stays a pause, not the end.", icon: (), }, { title: "Built for the hard weeks", body: "A habit that survives when life gets in the way, because it always does.", icon: (), }, ]; const FitHero = () => (
Designed for ADHD. Works for everyone.

Starting a fitness routine isn't the problem. It's the staying consistent part that keeps falling apart.

If you've started and stopped more times than you can count, that's not a motivation problem. It's an ADHD problem.

Loops is a daily coaching app for people with ADHD. It makes showing up easier, takes the drama out of missing a day, and, if you want it, gives you one person quietly cheering you on.

Free for 7 days. No complicated setup. On iOS for now.
{/* Three icon blocks */}

Three things Loops does for you

{HERO_BLOCKS.map((b) => (
{b.icon}

{b.title}

{b.body}

))}

Loops is a daily coaching app for people with ADHD.

); /* ---------------- What Loops does ---------------- */ const WhatLoopsDoes = () => (
How Loops helps

Less friction before you start. Less drama when you stop.

The problem with most fitness approaches is that they're designed for people whose brains reliably convert intention into action. For ADHD brains, that gap between "I'll go today" and actually going is where everything gets lost.

Loops gives you daily actions to keep your movement habit alive. It makes starting easier, keeps you going through the boring middle, and picks you back up after gaps without treating a missed week as a reason to start from scratch.

Then it adds the part most apps leave out. One person who sees you doing it. More on that just below.

); /* ---------------- Recognition (6 cards) ---------------- */ const RECOGNITION = [ "You start well. Two or three weeks in, something interrupts, and the whole thing quietly stops.", "The gym itself is fine. It's the getting there: the kit, the journey, the waiting, that feels disproportionately exhausting.", "You miss a few days and instead of just going back, you feel like you have to start completely over. So you don't go back at all.", "You've tried several formats: gym, running, home workouts, classes. Each one worked for a while and then stopped working.", "When you're exercising regularly, you feel noticeably better. But that knowledge alone isn't enough to keep you going.", "You don't need more information about what to do. You need something that makes you actually do it.", ]; const Recognition = () => (
Does any of this sound familiar?

You're not the only one who keeps starting over.

These are the patterns that come up again and again for people with ADHD trying to build a fitness habit. If several of these feel familiar, you're in the right place.

{RECOGNITION.map((t, i) => (

{t}

))}

None of this is about effort or desire. It's about what happens when ADHD meets a habit that requires daily self-regulation with no external structure holding it up.

); /* ---------------- Why it keeps happening (5 patterns) ---------------- */ const PATTERNS = [ { title: "The task-stack problem", body: "A 45-minute workout is rarely 45 minutes. In practice, it's finding the kit, the journey, the changing, the waiting, the shower, and getting back on track afterwards. For an ADHD brain, that hidden chain of steps before and after the actual session is often where the routine breaks down. The session itself is the easy part. Everything around it is where the friction lives.", }, { title: "The delayed reward problem", body: "Exercise rewards are mostly slow, abstract, and invisible for weeks or months. The competing demands are immediate: the warmth of staying in, the effort of getting changed, the resistance of leaving a screen. Research consistently shows that ADHD brains discount delayed rewards more steeply than non-ADHD brains. That doesn't mean fitness goals aren't wanted. It means the brain's in-the-moment response is working against them.", }, { title: "The boom-bust cycle", body: "A familiar pattern: going all in for a few weeks, then a disruption, travel, a difficult period, an illness, and somehow that break becomes permanent. The all-or-nothing thinking takes over: if the streak is broken, starting again feels like starting from zero. That cycle isn't a lack of commitment. It's a predictable response to how ADHD handles interruptions and loss of momentum.", }, { title: "The boredom barrier", body: "ADHD brains are wired to seek novelty and stimulation. Repetitive exercise formats that stay exactly the same every week tend to lose their pull faster than they do for non-ADHD brains. What worked brilliantly in week two can feel almost impossible to drag yourself to by week eight. This isn't laziness. It's a mismatch between how the brain sustains engagement and what most fitness formats require.", }, { title: "The shame spiral after stopping", body: "Each time the routine breaks down, a small amount of shame accumulates. The gym bag by the door. The running shoes that haven't moved. Over time, fitness can become an emotionally loaded category. Not just boring or inconvenient, but a reminder of a pattern of failure. That emotional weight makes starting again harder each time, which creates the next failure, which adds to the weight.", }, ]; const WhyItHappens = () => (
Understanding the pattern

Getting fit is unusually hard to sustain with an ADHD brain.

The evidence is clear on this: adults with ADHD commonly know what to do about fitness and genuinely want to do it. The barrier isn't knowledge or desire. It's the specific demands that exercise routines make on executive function, motivation, and emotional regulation: exactly the areas ADHD affects most.

    {PATTERNS.map((p, i) => (
  1. {String(i + 1).padStart(2, "0")}

    {p.title}

    {p.body}

  2. ))}

Every one of these patterns is predictable. Every one of them is something the right daily structure can make significantly easier.

); /* ---------------- Exercise as ADHD support ---------------- */ const ExerciseSupport = () => (
Something worth knowing

Movement doesn't just change your body. For ADHD brains, it can change your day.

Most fitness content talks about the long-term benefits: weight, strength, health over years. For someone with ADHD, that framing can actually make exercise harder to sustain, because the reward feels too far away to motivate action right now.

Exercise can improve attention, mood, impulse control, and executive function. Not eventually, but on the same day, often within the same hour. For an ADHD brain, that's a completely different reason to move.

A session isn't just something you do for future you. It's something that can make today more manageable. That shift in framing isn't a trick. It's what the evidence actually supports.

); /* ---------------- The part most apps miss (being seen) ---------------- */ const FIT_WITNESS_CARDS = [ { t: "All they have to do is see it", b: "When you close a loop, they see it. When you come back after a gap, they see that too, and it's no big deal. They just get to watch you keep showing up, and cheer you on." }, { t: "They don't manage you", b: "They don't nag or remind you. They don't check your workouts or tell you what to do. And they don't even need to pay. Their side is light on purpose." }, { t: "You're always in control", b: "You choose who it is. You decide what they can see, and you can change it any time." }, { t: "Someone quietly glad you went", b: "Someone quietly glad you went is often what gets you out the door on the day you'd otherwise stay in." }, ]; const FitWhyLoopsWorks = () => (
The part most apps miss

Brains finish for people, not for apps.

The hardest part of a fitness habit is that nobody notices if you don't go. It's just you, the kit by the door, and a quiet decision to stay in. That's a lot to hold up on your own.

So Loops adds the one thing that reliably keeps ADHD brains going. Another person.

You choose one person you trust. Your partner, a friend, someone who moves too, whoever it is. When you close a loop, they see it. When you come back after a gap, they see that too, and it's no big deal. You decide what they can see, and you can change it any time.

This is the step most people skip with other apps. It's also the one that makes Loops work.

{FIT_WITNESS_CARDS.map((c) => (

{c.t}

{c.b}

))}

You can start on your own if you'd rather. It still works. It just works better when someone can see you.

); /* ---------------- How it works (5 steps) ---------------- */ const STEPS = [ { t: "Tell Loops what you're working towards", b: "Share a bit about what kind of movement you want to do more of and where things usually break down. No lengthy setup." }, { t: "Choose your person", b: "Pick one person you trust to see your progress. You decide what they can see, and you can change it any time. This is the step most people skip with other apps, and the one that makes Loops work. On a Crew plan you can choose more than one, which suits a group who move together." }, { t: "Get small daily actions", b: "Each day, Loops shows you what's due and gives you specific, achievable things to do. Not a full programme. Not a target. Just the next right step for where you are today. Close the loop, and your person sees it." }, { t: "Get coaching when the routine breaks", b: "Missed a week? Lost momentum? Bored of what you were doing? Loops provides practical, personalised coaching to help you get back in rather than treating a gap as a full stop." }, { t: "Build a habit that survives real life", b: "Over time, the daily actions build into something that keeps going through the disruptions rather than collapsing under them. That's a different kind of fitness habit. It's the kind that actually lasts." }, ]; const HowItWorks = () => (
Getting started

Simple from day one.

You don't need a new fitness plan. You need a system that makes showing up easier, and picks you back up when you don't.

    {STEPS.map((s, i) => (
  1. {i + 1} Step {i + 1}

    {s.t}

    {s.b}

  2. ))}

You don't need a good week to start. You just need today.

); /* ---------------- What's inside Loops (5 parts) ---------------- */ const FIT_WHATS_INSIDE = [ { t: "One goal, in your own words", b: "Maybe a concrete one, like a 5k or a class you want to keep up. Maybe simply moving more, more consistently. With or without a finish line, whatever fits you. A goal your brain can hold on to." }, { t: "Loops that fit your life", b: "A loop is one small, repeating action, at a pace you choose. Some run every day, some a few times a week: lay your kit out the night before, a short walk at lunch, one home workout, get to a class this week. A few connect to your goal. Others are just life, like taking your meds before breakfast. A missed one doesn't wipe you out. You can repair a streak simply by showing up again." }, { t: "Your person", b: "The one you choose to see your progress: the loops you close and the times you come back after a gap. Support, without the nagging. On a Crew plan it can be more than one: your people, which works well for a group who move together." }, { t: "Rewards you can feel", b: "Promise yourself something for the milestones that matter: a month of showing up, the first week you came back after a gap, the format you finally stuck with. Loops holds the promise and calls it in when you've earned it, and your person gets to see it too." }, { t: "A coach who knows your whole story", b: "An AI coach built for ADHD. It already knows what you're working towards and where your routine tends to break, so there's no re-explaining yourself from the start. No booking, no waiting room. It's there at 11pm, right when you're about to talk yourself out of tomorrow." }, ]; const FitWhatsInside = () => (
What's inside Loops

Five simple things, working together.

{FIT_WHATS_INSIDE.map((p, i) => (
{String(i + 1).padStart(2, "0")}

{p.t}

{p.b}

))}
); /* ---------------- Social proof ---------------- */ const TESTIMONIALS = [ { quote: "I had started and stopped about eight times. What changed with Loops was that stopping didn't feel like failing any more. It just felt like a pause. I came back faster each time.", who: "Graphic designer, Manchester", meta: "ADHD diagnosis at 26" }, { quote: "The gym was never the problem. Getting to the gym was the problem. Loops helped me figure out a format that actually had less friction. I moved to home workouts and I've been consistent for four months.", who: "Software developer, Edinburgh", meta: null }, { quote: "I needed something that treated missing a day as normal rather than a disaster. Once the shame was taken out of it, it got a lot easier to keep going.", who: "Teacher, Bristol", meta: null }, ]; const SocialProof = () => (
From people who recognise themselves in this

You're in good company.

{TESTIMONIALS.map((t, i) => (
{t.quote}
{t.who}
{t.meta ?
{t.meta}
: null}
))}
); /* ---------------- Objections (4) ---------------- */ const OBJECTIONS = [ { q: "\u201CI have tried everything. Why would this be any different?\u201D", a: "Most fitness tools are designed for people who can reliably convert intention into action. They don't account for the specific ways ADHD disrupts that process: the task-stack friction, the boom-bust cycle, the all-or-nothing response to missing a day. Loops is designed around those patterns specifically. That's a structural difference, not just a different interface." }, { q: "\u201CDo I have to share my progress with anyone?\u201D", a: "No. Solo works perfectly well on its own. But most people find it works better when one person can see them. You decide what your person sees, and you can change it any time. You can add them whenever you're ready." }, { q: "\u201CWhat if I don't have a specific fitness goal?\u201D", a: "You don't need one. Moving more consistently is a complete goal in itself. Loops can help you build a habit around whatever kind of movement suits you, with or without a performance target at the end of it." }, { q: "\u201CWhat if the gym just doesn't work for me?\u201D", a: "That's completely valid. The research is clear that many people with ADHD do better with formats that are more varied, more enjoyable, home-based, or social. Loops works with whatever kind of movement fits your actual life, not an idealised version of it." }, { q: "\u201CWhat if I am not diagnosed?\u201D", a: "You don't need a diagnosis to use Loops. Many people using it are waiting for assessment, self-identifying, or finding that ADHD describes their experience without a formal label. If the patterns described on this page feel familiar, Loops is built for you." }, ]; const Objections = () => (
A few things worth knowing

Common questions before you start

{OBJECTIONS.map((o) => (

{o.q}

{o.a}

))}
); /* ---------------- FAQ accordion ---------------- */ const FIT_FAQS = [ { q: "What is Loops?", a: "Loops is a daily coaching app for people with ADHD and anyone building better habits. It combines personalised coaching, daily micro-actions, one person who sees your progress, rewards, and progress tracking into one consistent system. For fitness, it provides the external structure and recovery support that ADHD brains need to keep showing up." }, { q: "Who is 'your person', and do I need one?", a: "Your person is the one you choose to see your progress. When you close a loop or come back after a gap, they see it. They don't manage you or nag you. They just get to watch you keep showing up. You don't have to add one to start, but it's the part that makes Loops work, so we'll gently encourage it when you're ready. On a Crew plan it can be more than one: your people." }, { q: "Why do people with ADHD struggle to stick with exercise?", a: "The main barriers aren't lack of knowledge or desire. They're the executive function demands of building a routine: task initiation, managing the steps around the workout, sustaining effort when rewards feel distant, and recovering emotionally after interruptions without treating a missed week as total failure. Research consistently identifies these as the specific points where ADHD creates friction in fitness habits." }, { q: "What is the boom-bust cycle in ADHD fitness?", a: "The boom-bust cycle is the pattern where someone goes all in on a fitness routine, sustains it for a few weeks, then hits a disruption and doesn't return. All-or-nothing thinking often reinforces it: if the streak is broken, starting again feels like starting from zero. Research and community accounts describe this as one of the most consistent ADHD fitness patterns. Designing around it, rather than hoping to avoid it, is the more realistic approach." }, { q: "Does exercise actually help ADHD?", a: "Research supports exercise as a useful complement to other ADHD management, with adult studies showing improvements in attention, executive function, mood, and impulse control following aerobic activity. The adult evidence base is still growing, and exercise is best understood as a helpful adjunct rather than a standalone treatment. The particularly useful finding for ADHD is that some benefits appear on the same day as the session, which makes exercise a more immediately rewarding activity than most fitness content suggests." }, { q: "What type of exercise is best for ADHD?", a: "Research doesn't firmly support one format over others. Community evidence and qualitative studies suggest that people with ADHD often do better with exercise that is enjoyable, social, varied, or cognitively engaging, rather than strictly repetitive formats. Walking, running programmes, dance, climbing, sport, yoga, and home workouts all appear in community discussions as formats that worked when gym-based routines didn't. The best exercise is the one you'll actually do consistently." }, { q: "How does Loops help with building a fitness habit with ADHD?", a: "Loops gives you one daily action so you always know what to do next without having to plan the whole week. It provides coaching through the boom-bust cycle and the moments where gaps become permanent. And it's designed to make returning after a break feel like a continuation rather than a failure, which is the single biggest structural difference from most fitness apps." }, { q: "Do I need an ADHD diagnosis to use Loops?", a: "No. Loops is designed first for people with ADHD but doesn't require a formal diagnosis. If the experiences described on this page feel familiar, Loops is built for you." }, { q: "Is Loops available in the UK?", a: "Yes. Loops is available across the UK and is built with UK users in mind." }, ]; const FitFAQItem = ({ q, a, defaultOpen }) => (
{q}

{a}

); const FitFAQ = () => (
FAQ

Questions people often ask

Still wondering if Loops fits how your brain works? Contact us. A real person will reply.

{FIT_FAQS.map((f, i) => )}
); /* ---------------- Final CTA ---------------- */ const FitFinalCTA = () => (
Start with today

The goal isn't a perfect fitness routine. It's one that keeps going.

More movement, more consistently, with less drama when life gets in the way. That's what Loops helps you build, and it helps to have one person who's glad when you show up.

Free for 7 days. No complicated setup. On iOS for now.
); /* ---------------- Sources ---------------- */ const FIT_SOURCES = [ { t: "ADHD, Executive Functioning and Self-Regulation — Russell Barkley", u: "https://www.russellbarkley.org/factsheets/ADHD_EF_and_SR.pdf" }, { t: "Acute Effects of Aerobic Exercise on Executive Function — PubMed", u: "https://pubmed.ncbi.nlm.nih.gov/30971959/" }, { t: "Exploring Barriers and Facilitators to Physical Activity in Adults with ADHD: A Qualitative Investigation — Journal of Developmental and Physical Disabilities", u: "https://link.springer.com/article/10.1007/s10882-023-09908-6" }, { t: "Motivation Deficit in ADHD is Associated with Dysfunction of the Dopamine Reward Pathway — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC3010326/" }, { t: "Time Perception in Adult ADHD: Findings from a Decade — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC9962130/" }, { t: "Evidence of emotion dysregulation as a core symptom of adult ADHD — PLOS One", u: "https://journals.plos.org/plosone/article?id=10.1371%2Fjournal.pone.0280131" }, { t: "ADHD as a circadian rhythm disorder: evidence and implications — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC12728042/" }, { t: "Exploring Barriers and Facilitators to Physical Activity in Adults with ADHD — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC10156575/" }, { t: "Breaking Down Barriers: Understanding Determinants of Exercise in Adults with ADHD Symptoms — Journal of Developmental and Physical Disabilities", u: "https://link.springer.com/article/10.1007/s10882-024-09994-0" }, { t: "How do you stick to a routine of going to the gym every day? — r/ADHD", u: "https://www.reddit.com/r/ADHD/comments/1dht8ho/how_do_you_stick_to_a_routine_of_going_to_the_gym/" }, { t: "I just can't stick to a regular exercise schedule — r/ADHD", u: "https://www.reddit.com/r/ADHD/comments/op6yoc/i_just_cant_stick_to_a_regular_exercise_schedule/" }, { t: "Attention deficit hyperactivity disorder: diagnosis and management — NICE", u: "https://www.nice.org.uk/guidance/ng87/chapter/recommendations" }, { t: "Attention-deficit/hyperactivity disorder and impairment in organisation of time — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC4226281/" }, { t: "Physical activity guidelines for adults aged 19 to 64 — NHS", u: "https://www.nhs.uk/live-well/exercise/physical-activity-guidelines-for-adults-aged-19-to-64/" }, { t: "The Effects of Different Exercise Approaches on Attention — PubMed", u: "https://pubmed.ncbi.nlm.nih.gov/36829357/" }, { t: "Psychosocial interventions for improving the physical health of young people and adults with ADHD: a scoping review — BMC Psychiatry", u: "https://link.springer.com/article/10.1186/s12888-024-06009-2" }, { t: "The Effects of Physical Activity Interventions on the Core Symptoms of ADHD in Adults: A Systematic Review and Meta-Analysis — ResearchGate", u: "https://www.researchgate.net/publication/396780198_The_Effects_of_Physical_Activity_Interventions_on_the_Core_Symptoms_of_ADHD_in_Adults_A_Systematic_Review_and_Meta-Analysis" }, ]; const FitSources = () => (
Our sources

Where this comes from

This page draws on research into ADHD, exercise, executive function, and real accounts from people trying to build a movement habit that sticks. Here's where it comes from.

    {FIT_SOURCES.map((s, i) => (
  1. {s.t}
  2. ))}

Loops is a daily coaching app, not a medical or clinical service. These sources inform how we think about ADHD and exercise; they are not an endorsement of Loops by their authors.

); /* ---------------- Pricing ---------------- */ const FIT_PRICING = [ { name: "Solo", price: "\u00A39.99", per: "/mo", tag: null, blurb: "Everything: your goal, loops, streaks, rewards and coach. Just you and the habit.", featured: false }, { name: "Duo", price: "\u00A312.99", per: "/mo", tag: "The one we'd pick", blurb: "Everything, for two. You and your person, both with the full app, on one bill. Three pounds more than going alone, for the thing that makes it work.", featured: true }, ]; const FitPricing = () => (
Pricing

Better with your person. Built for it.

{FIT_PRICING.map((p) => (
{p.tag ? {p.tag} : null}

{p.name}

{p.price} {p.per}

{p.blurb}

))}

Prefer to pay yearly? A year of it, together, with two months free. Every plan starts with a 7-day free trial. On iOS for now.

); /* ---------------- App ---------------- */ function FitApp() { return (
); } const fitRoot = ReactDOM.createRoot(document.getElementById("root")); fitRoot.render();