/* Loops — "Stay Focused Long Enough to Make Progress With ADHD" use-case page Self-awareness/competence guardrails: "You can focus" in H1 before any failure, every mechanism neurological, active avoidance framed as often involuntary, interest-based focus agreed with then contextualised, winning proportionate. Unique section: externalise focus. */ /* ---------------- Page nav (links back to the homepage) ---------------- */ const FOC_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 FocNav = () => { 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 FOC_HERO_BLOCKS = [ { title: "Start the session", body: "One specific, low-friction way in, for the days when starting feels impossible.", icon: (), }, { title: "Build conditions that help", body: "External structure rather than willpower. The kind that works even when motivation doesn't.", icon: (), }, { title: "Make something real", body: "A session where something existed at the end that didn't at the beginning.", icon: (), }, ]; const FocHero = () => (
Designed for ADHD. Works for everyone.

You can focus. You just can't make it happen when you need it.

ADHD attention doesn't disappear. It arrives and leaves on its own schedule. The problem isn't concentration. It's that concentration won't come when called.

Loops is a daily coaching app for people with ADHD. It gives you low-friction ways into the work each day, coaching for when the session stalls, and, if you want it, one person whose quiet attention makes the session more likely to happen.

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

Three things Loops does for you

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

{b.title}

{b.body}

))}

Loops is a daily coaching app for people with ADHD.

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

A daily system that builds the conditions for focus, rather than relying on it showing up.

Most focus advice assumes the problem is distraction. Remove the phone, close the tabs, find a quiet room. For ADHD brains, the problem is more specific: attention doesn't respond reliably to conditions. It responds to interest, urgency, and novelty. When none of those are present, the session doesn't happen regardless of how distraction-free the environment is.

Loops gives you specific session prompts each day, structures the entry point so that starting doesn't require a decision, and coaches you through the moments when the work usually stops. Not a focus hack. A daily structure that makes the session more likely to happen and more likely to produce something.

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 FOC_RECOGNITION = [ "You sat down to work an hour ago. You've produced nothing. You're not sure where the time went.", "When you're interested, you're completely absorbed. When you're not, you can't manufacture even ten minutes of useful concentration.", "You opened a browser tab to look one thing up. Forty minutes later, you're not sure how you got here.", "You started cleaning instead. You knew what you were doing. You did it anyway.", "You have the skills. You have the knowledge. You have everything you need except the ability to sit with the work long enough to use any of it.", "You've watched other people settle into sustained work and thought: genuinely, how do they do that?", ]; const FocRecognition = () => (
Does any of this sound familiar?

You're not alone in this.

These are the patterns people with ADHD describe most often when it comes to focus and sustained attention.

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

{t}

))}

This isn't a focus deficit. It's a focus regulation problem. And it responds to a very different kind of support than "try harder."

); /* ---------------- Why it keeps happening (5 patterns) ---------------- */ const FOC_PATTERNS = [ { title: "Moment-to-moment variability", body: "ADHD attention doesn't stay flat. It spikes and crashes independent of effort or intention. Research documents high moment-to-moment variability in ADHD attention and arousal. This explains why the same task can feel manageable one hour and completely impossible the next, without anything external having changed." }, { title: "Interest as the only reliable fuel", body: "ADHD brains run on interest, novelty, and urgency. When none of those are present, focus doesn't activate regardless of how important the task is. This is the fundamental mismatch between ADHD attention and most work: importance doesn't motivate the way urgency does, and significance tomorrow doesn't compete with stimulation now." }, { title: "Active avoidance", body: "When a task feels too difficult to start, the brain switches to something easier. Not passively. Actively. The research names this specifically: cleaning, browsing, and reorganising are common ADHD avoidance responses to difficulty. The switch feels involuntary because it often is." }, { title: "The competency ceiling", body: "\u201CIf I can't do it immediately, what's the point?\u201D isn't perfectionism. It's delay aversion. ADHD brains discount future rewards steeply, which means the effort of a hard session feels disproportionate to benefits that won't arrive for days or weeks. The result is a specific kind of stalling that looks like procrastination but has a different cause." }, { title: "The session guilt loop", body: "A lost session doesn't just waste time. It makes the next session harder to start. When a work session fails to produce output, the guilt and shame that follow add emotional weight to every subsequent attempt. The task gains a reputation as something that goes badly, making entry harder each time." }, ]; const FocWhyItHappens = () => (
Understanding the pattern

It's not distraction. It's variability. And the difference matters.

ADHD attention doesn't work the way most focus advice assumes. Understanding the specific mechanisms changes what actually helps.

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

    {p.title}

    {p.body}

  2. ))}

Loops is designed to interrupt these patterns before they compound into another empty afternoon.

); /* ---------------- Unique section: externalise focus ---------------- */ const FocReframe = () => (
The insight that changes what preparing for a session looks like

The most effective focus support isn't trying harder. It's building better conditions.

Most focus advice is about generating focus from the inside: remove distractions, sit down, try harder. For ADHD brains, this approach competes directly with internal motivation that is unreliable by design. When the motivation isn't there, trying harder to generate focus through willpower is precisely the most effortful and least effective intervention available.

What works better is externalising the conditions that produce focus: a prompt that shows up at the right moment, a structure that makes entry low-friction, a session size calibrated to what's actually possible today. The environment does the work that motivation can't. This isn't a workaround. It's how ADHD focus actually functions when it functions well.

); /* ---------------- The part most apps miss (being seen) ---------------- */ const FOC_WITNESS_CARDS = [ { t: "A person is external structure", b: "Focus responds to conditions, not willpower, and another person is one of the strongest conditions there is. When someone can see the session happen, the work stops being purely internal, which is exactly where ADHD attention struggles." }, { t: "They don't supervise you", b: "They don't have to nag you or check your output. They don't manage you, they don't even pay. Their side is light on purpose." }, { t: "You're always in control", b: "You choose who it is. You decide exactly what they can see, and you can change it any time." }, { t: "It's body doubling, built in", b: "The thing that makes body doubling work, someone else present while you work, without needing to book a call or share a room. One person whose quiet attention makes the session more likely." }, ]; const FocWhyLoopsWorks = () => (
The part most apps miss

Brains finish for people, not for apps.

There's a reason so many people with ADHD get more done in a café, on a call with the camera on, or sitting near someone else working. It's called body doubling, and it works because another person is external structure the brain can borrow when its own won't switch on.

So Loops builds that in. The one thing that reliably keeps ADHD brains going. Another person.

You choose one person you trust. Your partner, a friend, whoever it is. When you close a loop, they see it. When you get back to the work after a stalled day, they see that too, and it's no big deal. You decide exactly 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.

{FOC_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 FOC_STEPS = [ { t: "Tell Loops what you're working on", b: "Name the task or project. How much time you have. What a productive session looks like for today, not the ideal version. Plain language. No setup." }, { t: "Choose your person", b: "Pick one person you trust to see your progress, so the session has a bit of built-in body doubling. 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: a small body-doubling pod." }, { t: "Get specific session prompts", b: "Each day, Loops gives you specific, low-friction ways into the work. Something concrete enough to start on immediately, sized to the day you're actually having rather than the day you planned. Close the loop, and your person sees it." }, { t: "Get coached through the stall", b: "Session grinding to a halt? Loops gives you a practical next action rather than a reminder of what you haven't done. Not motivation. Just the next smallest thing." }, { t: "End the session with something real", b: "Not a perfect output. Not everything done. Something that existed at the end that didn't at the beginning. That's enough." }, ]; const FocHowItWorks = () => (
Getting started

One session. Made as easy as possible to enter. Today.

You don't need to wait until you feel ready. Loops is designed to make the session possible from exactly where you are.

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

    {s.t}

    {s.b}

  2. ))}

You don't need focus to show up before you start. You need a structure that makes starting possible. That's what Loops is for.

); /* ---------------- What's inside Loops (5 parts) ---------------- */ const FOC_WHATS_INSIDE = [ { t: "One goal, in your own words", b: "The task or project you're trying to focus on, described your way, and what a good enough session looks like today. Not the ideal version. Just a clear target, so each session has somewhere to point." }, { t: "Loops that fit your life", b: "A loop is one small, repeating action, at a pace you choose, built as a low-friction way into the work rather than a block of willpower. Some run every day, some a few times a week: open the file and write one line, fifteen minutes on the hard thing, one session before lunch. A few connect to the work. Others are just life, like taking your meds before breakfast. A stalled day is a data point, not a failure. The next small entry point is still there whenever you come back." }, { t: "Your person", b: "The one you choose to see your progress: the loops you close and the sessions that happened. Built-in body doubling, the thing that makes working near someone else work, without booking a call or sharing a room. On a Crew plan it can be more than one: a small body-doubling pod." }, { t: "Rewards you can feel", b: "Because the payoff of a session can feel days away, you promise yourself something for the moments that matter: a week of sessions that actually happened, the hard thing finally started, a run of focused days. 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 on and where your sessions tend to stall, so there's no re-explaining yourself from the start. No booking, no waiting room. It's there when you've been staring at the screen for an hour, with a concrete way back in rather than a lecture." }, ]; const FocWhatsInside = () => (
What's inside Loops

Five simple things, working together.

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

{p.t}

{p.b}

))}
); /* ---------------- Social proof ---------------- */ const FOC_TESTIMONIALS = [ { quote: "I spent two years thinking the problem was distraction. I removed every distraction I could find. The sessions still didn't happen. Loops helped me understand the problem was the entry point, not the environment. Now I have one.", who: "Freelance writer", meta: "Diagnosed with ADHD at 28" }, { quote: "I can hyperfocus for six hours on something I love. I couldn't get twenty minutes on something I needed. Loops didn't fix that gap. It gave me a structure for the need-to side that didn't depend on the love-to side.", who: "Data analyst", meta: "Using Loops for 9 weeks" }, { quote: "A session that actually produced something. That's all I wanted. Loops helped me make that happen more consistently than I ever have before.", who: "Architect, Birmingham", meta: null }, ]; const FocSocialProof = () => (
What people say

From people who recognise themselves in this.

{FOC_TESTIMONIALS.map((t, i) => (
{t.quote}
{t.who}
{t.meta ?
{t.meta}
: null}
))}
); /* ---------------- Pricing ---------------- */ const FOC_PRICING = [ { name: "Solo", price: "\u00A39.99", per: "/mo", tag: null, blurb: "Everything: your goal, loops, streaks, rewards and coach. Just you and the work.", 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 FocPricing = () => (
Pricing

Better with your person. Built for it.

{FOC_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.

); /* ---------------- Objections (5, incl. interest-based focus 1st) ---------------- */ const FOC_OBJECTIONS = [ { q: "\u201CI focus fine when I'm interested. The problem is boring tasks.\u201D", a: "That's exactly right. And it's exactly the problem Loops is built for. Interest-based focus is real and valuable. But the tasks that matter most often don't self-select for interest. Loops gives you the entry structure for the sessions where interest isn't enough to get you started." }, { 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, partly because that quiet attention is body doubling built in. You decide what your person sees, and you can add them whenever you're ready." }, { q: "\u201CI just need to remove distractions. That's all.\u201D", a: "Distraction removal helps. It doesn't solve the entry problem. ADHD attention doesn't respond to a distraction-free environment the way other brains do. External structure that prompts and scaffolds the session works better than willpower-based distraction management." }, { q: "\u201CWhat if I'm not diagnosed?\u201D", a: "You don't need a diagnosis. Many people using Loops are on waiting lists, self-identifying, or simply recognise that the patterns here feel familiar. If that's you, Loops is built for you." }, { q: "\u201CWhat if I just can't focus today at all?\u201D", a: "That's what the session prompt is sized for. On days when focus isn't available, Loops gives you something small enough to be possible anyway. Even a very small session produces more than no session, and it keeps the work accessible for tomorrow." }, ]; const FocObjections = () => (
A few things worth knowing

Common questions before you start

{FOC_OBJECTIONS.map((o) => (

{o.q}

{o.a}

))}
); /* ---------------- FAQ accordion ---------------- */ const FOC_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, and accountability in one system. For focus specifically, it provides the entry structure for work sessions that ADHD makes difficult to initiate and sustain." }, { q: "Who is 'your person', and do I need one?", a: "Your person is the one you choose to see your progress: the loops you close and the sessions that happened. It's body doubling built in, the reason so many people with ADHD focus better near someone else, without booking a call or sharing a room. They don't supervise you or nag you. 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: a small body-doubling pod." }, { q: "How does Loops help with focus if you have ADHD?", a: "It removes the decision of how to enter the work by giving you one specific, low-friction session prompt each day. It also coaches you through the moments when the session stalls, so a difficult start doesn't mean an empty afternoon." }, { q: "Why does ADHD make focus so unpredictable?", a: "ADHD involves high moment-to-moment variability in attention and arousal that isn't under voluntary control. Focus activates reliably in response to interest, novelty, and urgency, but not in response to importance or intention. This is why the same task can feel possible one day and completely unmanageable the next." }, { 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 here feel familiar, Loops is built for you." }, { q: "Is Loops a focus app like a Pomodoro timer?", a: "No. Pomodoro timers structure time once you're already in the work. Loops addresses what happens before that: the entry point, the session prompt, and the coaching when things stall. It works well alongside a timer if that helps you once you're started." }, { q: "What if a session produces very little?", a: "A small output is still an output. Loops is designed to keep the work accessible rather than optimal, so a low-productivity session doesn't become a reason to avoid the next one." }, { q: "Is Loops available in the UK?", a: "Yes. Loops is available across the UK and is designed around UK contexts and guidance." }, { q: "How long before focus sessions start going better?", a: "Most people notice a shift within two to three weeks, less in how focused they feel and more in how often sessions actually happen. Improved session quality usually comes later, as the structure becomes more established." }, ]; const FocFAQItem = ({ q, a, defaultOpen }) => (
{q}

{a}

); const FocFAQ = () => (
FAQ

Questions people often ask

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

{FOC_FAQS.map((f, i) => )}
); /* ---------------- Final CTA ---------------- */ const FocFinalCTA = () => (
A session that happened

A session where something gets done. That's enough to start.

Not sustained flow. Not a perfect afternoon. Just the work moving forward, in a session that happened rather than one that didn't, and, if you want, one person who makes that session a little more likely.

Free for 7 days. No complicated setup. On iOS for now.
); /* ---------------- Sources ---------------- */ const FOC_SOURCES = [ { t: "208 Evidence-Based Conclusions About the Disorder — PubMed", u: "https://pubmed.ncbi.nlm.nih.gov/33549739/" }, { t: "Attention-Deficit/Hyperactivity Disorder (ADHD) in Adults — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC12434367/" }, { t: "Benefits and Harms of ADHD Interventions — PubMed", u: "https://pubmed.ncbi.nlm.nih.gov/41297970/" }, { t: "Attention-Deficit/Hyperactivity Disorder (ADHD) in Adults — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC11500298/" }, { t: "Executive Functioning Heterogeneity in Pediatric ADHD — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC6204311/" }, { t: "Evaluating Dopamine Reward Pathway in ADHD — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC2958516/" }, { t: "Time Perception in Adult ADHD: Findings From a Decade, A Review — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC9962130/" }, { t: "Evidence of Emotion Dysregulation as a Core Symptom of Adult ADHD — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC9821724/" }, { t: "The Experience of Effort in ADHD: A Scoping Review — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC11184226/" }, { t: "How Do You Manage Task Initiation Paralysis When... — r/ADHD", u: "https://www.reddit.com/r/ADHD/comments/1m7a38c/how_do_you_manage_task_initiation_paralysis_when/" }, { t: "“My Only Productivity Comes From Panic.” — r/ADHD", u: "https://www.reddit.com/r/ADHD/comments/133v10m/my_only_productivity_comes_from_panic/" }, { t: "Hyperfocus in ADHD: A Misunderstood Cognitive Phenomenon — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC12437476/" }, { t: "How Do You Get ANY Work Done? What's Your Strategy? — r/ADHD", u: "https://www.reddit.com/r/ADHD/comments/qbx63y/how_do_you_get_any_work_done_whats_your_strategy/" }, { t: "Experiences of Criticism in Adults With ADHD: A Qualitative Study — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC8856522/" }, { t: "A Systematic Review of Interventions to Support Adults With ADHD at Work — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC9443814/" }, { t: "Sleep Problems in Adults With ADHD: Prevalences and... — PubMed", u: "https://pubmed.ncbi.nlm.nih.gov/39354860/" }, { t: "Attention deficit hyperactivity disorder: diagnosis and management — NICE", u: "https://www.nice.org.uk/guidance/ng87/chapter/recommendations" }, { t: "A Systematic Review and Component Network Meta-Analysis of ADHD Interventions — The Lancet Psychiatry", u: "https://www.thelancet.com/journals/lanpsy/article/PIIS2215-0366%2824%2900360-2/fulltext" }, { t: "Coaching for Adults With ADHD: A Prospective Study — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC13031141/" }, { t: "Evaluating the Evidence: A Systematic Review of Digital Interventions for ADHD — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC12016436/" }, { t: "Systematic Review and Meta-Analysis: Do White Noise or Pink Noise Improve Attention in ADHD? — PubMed", u: "https://pubmed.ncbi.nlm.nih.gov/38428577/" }, { t: "ADHD Management Information, May 2025 — NHS Digital", u: "https://digital.nhs.uk/data-and-information/publications/statistical/mi-adhd/may-2025" }, { t: "Living Well With Adult ADHD: Practical Strategies for Improving Your Daily Life — Knouse & Barkley, Routledge", u: "https://www.routledge.com/Living-Well-with-Adult-ADHD-Practical-Strategies-for-Improving-Your-Daily-Life/Knouse-Barkley/p/book/9781462555123" }, { 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: "Moderating Effect of Attention Deficit Hyperactivity Disorder... — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC10070913/" }, { t: "Self-Compassion in University Students With ADHD — Sage Journals", u: "https://journals.sagepub.com/doi/full/10.1177/21676968261417727" }, { t: "If I Read “Try the Pomodoro Method” One More Time I'm Going... — r/ADHD", u: "https://www.reddit.com/r/ADHD/comments/ord1y1/if_i_read_try_the_pomodoro_method_one_more_time/" }, { t: "Work-MAP Telehealth Metacognitive Work-Performance Intervention — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC10336612/" }, { t: "Adult ADHD Assessments and Diagnosis — PREPARE, University of York", u: "https://www.york.ac.uk/media/healthsciences/images/research/prepare/reportsandtheircoverimages/Adult-ADHD-Assessments-PREPARE-May-2025.pdf" }, { t: "What Can Adults With ADHD Tell Us About Their Experiences? A Review of Qualitative Methods to Map a New Research Agenda — Unbound Medicine", u: "https://www.unboundmedicine.com/medline/citation/40685894/What_Can_Adults_With_ADHD_Tell_Us_About_Their_Experiences__A_Review_of_Qualitative_Methods_to_Map_a_New_Research_Agenda" }, { t: "CBT for Adult ADHD: From Intention to Action — Psychwire", u: "https://psychwire.com/free-resources/q-and-a/15i4yzk/cbt-for-adult-adhd-from-intention-to-action" }, ]; const FocSources = () => (
Our sources

Where this comes from

This page draws on ADHD clinical guidelines, research into attention variability, reward processing and time perception, and real accounts from people who can focus completely on some things and not at all on others. Here's where it comes from.

    {FOC_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 focus; they are not an endorsement of Loops by their authors.

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