/* Loops — "Finding a New Job With ADHD" use-case page */ /* ---------------- Page nav (links back to the homepage) ---------------- */ const JOB_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 JobNav = () => { 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 JOB_HERO_BLOCKS = [ { title: "Get applications moving", body: "One daily action so you always know what to do next.", icon: (), }, { title: "Prepare for interviews", body: "Practice that works when your mind goes blank under pressure.", icon: (), }, { title: "Recover from rejection", body: "Coaching through the low points so one bad week doesn't end the search.", icon: (), }, ]; const JobHero = () => (
Designed for ADHD. Works for everyone.

Job hunting is hard for anyone. With ADHD, it can feel completely impossible.

You want to find something new. You know what to do. But starting, staying consistent, and recovering from rejection keeps getting in the way.

Loops is a daily coaching app for people with ADHD. It gives your search a structure that holds when motivation doesn't, and, if you want it, one person who gets to see you keep going.

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

Three things Loops does for you

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

{b.title}

{b.body}

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

A daily structure for the parts of job hunting that ADHD makes hardest.

A job search isn't one task. It's dozens of small tasks spread over weeks or months, with no clear deadline and a reward that feels very far away.

Loops breaks it down into small, manageable steps and shows you the next one to take. It helps you get applications moving, prepare for interviews, and keep going when things get quiet or go wrong.

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

); /* ---------------- The part most apps miss (being seen) ---------------- */ const JOB_WITNESS_CARDS = [ { t: "All they have to do is see it", b: "When you close a loop, they see it. When you get through an interview, they see it. When you hit a milestone, they see that too. They just get to watch you keep going, and cheer you on." }, { t: "They don't manage you", b: "They don't nag or remind you. They don't check your work 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. If your search is private, keep it entirely to yourself." }, { t: "For the days a rejection lands", b: "A job hunt is full of knockbacks. On the days one lands, one person in your corner is often what gets you back to the search." }, ]; const JobWhyLoopsWorks = () => (
The part most apps miss

Brains finish for people, not for apps.

A job search is long, quiet, and full of knockbacks. It's easy to stop when nobody's watching, and even easier to stay stopped.

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

You choose one person you trust. Your partner, a friend, a former colleague, whoever it is. When you close a loop, they see it. When you get through an interview, they see it. 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.

{JOB_WITNESS_CARDS.map((c) => (

{c.t}

{c.b}

))}

And if your search is private, that's completely fine. You can keep it entirely to yourself and Loops still works. Your person is there for when, and if, you want it.

); /* ---------------- Recognition (6 cards) ---------------- */ const JOB_RECOGNITION = [ "You open a job listing, feel genuinely excited, then close the tab without applying. Again.", "You can search in bursts when the pressure is high. The moment the urgency fades, so does the momentum.", "Cover letters make you freeze. Even when you know exactly what to say, getting the words out feels impossible.", "You prepare for interviews, feel ready, then your mind goes blank the moment someone asks a question.", "A rejection or a period of silence knocks you sideways. Sometimes it stops the search entirely for days or weeks.", "You've tried tracking systems, spreadsheets, apps, lists. None of them stuck.", ]; const JobRecognition = () => (
Does any of this sound familiar?

You're not the only one who finds this hard.

These are the patterns people with ADHD describe most often during a job search. If you recognise yourself here, you're in the right place.

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

{t}

))}

These aren't character flaws. They are predictable patterns when an ADHD brain meets a process it wasn't designed for.

); /* ---------------- Why it keeps happening (6 failure points) ---------------- */ const JOB_PATTERNS = [ { title: "Choosing which roles to pursue", body: "Decision-making is exhausting before a single application is sent. Filtering dozens of options, weighing trade-offs, and committing to one direction can consume more energy than the search itself.", }, { title: "Getting started and staying consistent", body: "It's not \u201CI do nothing.\u201D It's \u201CI can only do it in bursts.\u201D When urgency or interest is high, action flows. When it isn't, starting feels almost physically impossible.", }, { title: "Getting through the admin", body: "CV tailoring, cover letters, portals, follow-ups, scheduling, references. Each is a separate sub-task requiring switching, remembering, and restarting. In lived experience, the load accumulates fast.", }, { title: "Performing well in interviews", body: "You can be genuinely capable in the role and still perform poorly in the room. Interviews compress working memory, emotional regulation, and concise storytelling into one short, high-stakes window.", }, { title: "Recovering from rejection and silence", body: "A knockback that takes another candidate an afternoon can derail a search for weeks. The cycle of applying intensely, then stopping after a setback, is one of the most common ADHD job-search patterns.", }, { title: "Knowing whether to disclose", body: "You may need the adjustments most at the moment you feel least able to ask for them. UK law requires employers to offer reasonable adjustments during recruitment, but deciding whether and how to disclose carries real emotional weight.", }, ]; const JobWhyItHappens = () => (
Understanding what's actually going on

There are six places a job search tends to break down for ADHD brains.

Once you can name the specific places it goes wrong, they become much easier to address. None of these are about effort or ability.

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

    {p.title}

    {p.body}

  2. ))}

Loops is designed around all six of these. Not as separate tools, but as one connected system.

); /* ---------------- How it works (4 steps) ---------------- */ const JOB_STEPS = [ { t: "Tell Loops where you are", b: "Share where you are in your search and what kind of role you're looking for. No lengthy setup." }, { t: "Choose your person, if you want one", 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. It's entirely optional, and because a search is often private, you can keep everything to yourself. On a Crew plan you can choose more than one." }, { t: "Get small daily actions", b: "Each day, Loops shows you what's due and gives you specific, achievable next steps. Not an overwhelming list. Just the next right thing. Close the loop, and your person sees it." }, { t: "Get coaching when you hit a wall", b: "Stuck on a cover letter? Dreading an interview question? Got rejected and lost momentum? Loops provides practical, personalised coaching to help you move through it." }, { t: "Keep going through the hard parts", b: "Loops stays with you through the whole search. The slow weeks, the quiet periods, the knockbacks. It's designed to carry you through, not just get you started." }, ]; const JobHowItWorks = () => (
Getting started

Simple from day one.

You don't need to overhaul your whole approach. Loops fits around what you're already doing.

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

    {s.t}

    {s.b}

  2. ))}

There's no wrong point to begin. Wherever you are in your search right now is the right place to start.

); /* ---------------- What's inside Loops (5 parts) ---------------- */ const JOB_WHATS_INSIDE = [ { t: "One goal, with a finish line", b: "Your search, written in your own words, with a rough timeframe and a clear picture of what done looks like: an offer you're happy to accept. A goal your brain can actually see." }, { 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: one application a day, a practised interview answer, ten minutes on your CV. A few connect to your search. 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 steps you take and the milestones you reach. Support, without the nagging. Always optional. On a Crew plan it can be more than one: your people." }, { t: "Rewards you can feel", b: "Promise yourself something for the moments that matter: the first application out, the first interview booked, the offer accepted. 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 where you are in your search and what you've been through, so there's no re-explaining yourself from the start. No booking, no waiting room. It's there at 11pm, which is often when a rejection lands." }, ]; const JobWhatsInside = () => (
What's inside Loops

Five simple things, working together.

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

{p.t}

{p.b}

))}
); /* ---------------- Social proof ---------------- */ const JOB_TESTIMONIALS = [ { quote: "I had been 'job hunting' for six months. In reality I had applied for about four things. Loops helped me make it a daily habit instead of something I avoided. I got three interviews in the first month.", who: "UX designer, London", meta: "Diagnosed with ADHD at 28" }, { quote: "The interview preparation was the part I needed most. I've always known my subject but interviews make my brain go completely blank. Practising the answers made a real difference.", who: "Account manager, Manchester", meta: null }, { quote: "After getting ghosted twice I just stopped applying. Loops helped me get back into it without feeling like I was starting from scratch every time.", who: "Operations coordinator, Bristol", meta: null }, ]; const JobSocialProof = () => (
From people who know exactly how this feels

You're in good company.

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

Better with your person. Built for it.

{JOB_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) ---------------- */ const JOB_OBJECTIONS = [ { q: "\u201CI've tried systems before. They never last.\u201D", a: "Most job-search tools aren't built for ADHD brains. They rely on sustained motivation and managing complexity across multiple platforms. Loops is designed to stay useful after the novelty fades, meeting you where you are rather than expecting you to come to it." }, { q: "\u201CDo I have to share my search with anyone?\u201D", a: "No. Solo works perfectly well on its own, and your search stays entirely yours. If you do want someone alongside you, you decide what your person sees and can change it any time. You can add them whenever you're ready." }, { q: "\u201CWhat if I'm not officially diagnosed?\u201D", a: "You don't need a diagnosis. Many people using Loops are on waiting lists, self-identifying, or finding that ADHD describes their experience without a formal label. If what you've read here feels true, Loops is built for you." }, { q: "\u201CWhat if my search is already quite far along?\u201D", a: "There's no wrong point to start. Whether you're at the beginning or in the middle of a search that has stalled, Loops works the same way." }, { q: "\u201CI don't have much time. I'm searching while still working.\u201D", a: "The daily actions are short and specific. You don't need long focused sessions to make progress. Small consistent steps, built into whatever time you have, add up." }, ]; const JobObjections = () => (
A few things worth knowing

Common questions before you start

{JOB_OBJECTIONS.map((o) => (

{o.q}

{o.a}

))}
); /* ---------------- FAQ accordion ---------------- */ const JOB_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 system. For job seekers, it acts as external structure for the search: helping you start, stay consistent, and recover when things go wrong." }, { 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 hit a milestone, they see it. They don't manage you or nag you. They just get to watch you keep going. Because a job search is often private, it's entirely optional: Solo works perfectly well on its own. On a Crew plan it can be more than one: your people." }, { q: "Why is job hunting so hard with ADHD?", a: "Job hunting requires sustained self-regulation, repeated task initiation, administrative consistency, and emotional recovery from rejection over a long period with no guaranteed reward. These are the same functions most affected by ADHD. The difficulty is predictable rather than personal." }, { q: "How does Loops help with finding a job when you have ADHD?", a: "Loops breaks the job search into daily manageable steps so starting feels achievable. It provides interview preparation support, coaching after rejections, and a consistent structure that keeps the search moving through the slow and difficult periods." }, { 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: "How do I prepare for interviews when I have ADHD?", a: "Practise out loud rather than reading notes. Prepare short, structured examples for likely questions. Have a grounding routine before you go in. The goal is to build answers you can recall under pressure, not ones you have to reconstruct on the spot. Loops guides you through this step by step." }, { q: "What should I do after being rejected from a job with ADHD?", a: "Treat the recovery period as a planned part of the search, not a failure. Give yourself time to decompress, get perspective on what was within your control, and take one small step back in when you're ready. Loops provides coaching through exactly this." }, { q: "Can I ask for adjustments during a job interview if I have ADHD?", a: "Yes. UK employment law requires employers to provide reasonable adjustments to disabled applicants throughout the recruitment process, including at interview. Adjustments might include receiving questions in advance, extra time, or an adapted format. You don't need to disclose your specific diagnosis to request adjustments." }, { q: "Is Loops available in the UK?", a: "Yes. Loops is available across the UK and is built with UK workplace context and employment law in mind." }, ]; const JobFAQItem = ({ q, a, defaultOpen }) => (
{q}

{a}

); const JobFAQ = () => (
FAQ

Questions people often ask

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

{JOB_FAQS.map((f, i) => )}
); /* ---------------- Final CTA ---------------- */ const JobFinalCTA = () => (
Start with one step

Your job search doesn't have to feel like this.

You don't need a perfect week to make progress. You just need one step, and, if you want, one person who sees you take it.

Free for 7 days. No complicated setup. On iOS for now.
); /* ---------------- Sources ---------------- */ const JOB_SOURCES = [ { t: "Occupational issues of adults with ADHD — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC3599848/" }, { t: "Impairment in occupational functioning and adult ADHD", u: "https://pubmed.ncbi.nlm.nih.gov/20197297/" }, { t: "Attention-deficit/hyperactivity disorder and occupational outcomes — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC7968636/" }, { t: "Job search self-regulation research — University of Minnesota Carlson School of Management", u: "https://carlsonschool.umn.edu/sites/carlsonschool.umn.edu/files/2021-06/VanHooftKammeyerMuellerWanbergKanferBasbug_JAP%202021.pdf" }, { t: "Motivation Deficit in ADHD is Associated with Dysfunction of the Dopamine Reward Pathway", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC3010326/" }, { t: "Recommendations for occupational therapy interventions for adults with ADHD — UK Adult ADHD Network consensus statement", u: "https://link.springer.com/article/10.1186/s12888-021-03070-z" }, { t: "Emotional dysregulation and Attention-Deficit/Hyperactivity Disorder — PMC", u: "https://pmc.ncbi.nlm.nih.gov/articles/PMC4282137/" }, { t: "Stress and work-related mental illness among working adults with ADHD — BMC Psychiatry", u: "https://link.springer.com/article/10.1186/s12888-022-04409-w" }, { t: "Following discrimination law — Recruitment — Acas", u: "https://www.acas.org.uk/recruitment/follow-discrimination-law" }, { t: "A System/Structure for Job Hunting — r/adhdwomen", u: "https://www.reddit.com/r/adhdwomen/comments/1q7g8ev/a_systemstructure_for_job_hunting/" }, { t: "ADHD at the workplace: ADHD symptoms, diagnostic status and work-related functioning — Journal of Neural Transmission", u: "https://link.springer.com/article/10.1007/s00702-021-02309-z" }, { t: "Effectiveness of job search interventions: a meta-analytic review — PubMed", u: "https://pubmed.ncbi.nlm.nih.gov/24588365/" }, { t: "The lived experiences of adults with ADHD: a rapid review of qualitative evidence — ResearchGate", u: "https://www.researchgate.net/publication/362652602_The_lived_experiences_of_adults_with_attention-deficithyperactivity_disorder_A_rapid_review_of_qualitative_evidence" }, { t: "Job searching with ADHD is great, isn't it? — r/adhdwomen", u: "https://www.reddit.com/r/adhdwomen/comments/rt5xnn/job_searching_with_adhd_is_great_isnt_it/" }, { t: "How do you find motivation for job searching? — r/ADHD", u: "https://www.reddit.com/r/ADHD/comments/1iiic1i/how_do_you_find_motivation_for_job_searching/" }, { t: "Plain English summary of the ADHD Taskforce report — NHS England", u: "https://www.england.nhs.uk/long-read/plain-english-summary-of-the-adhd-taskforce-report/" }, { t: "I keep ‘failing’ every interview — r/ADHD", u: "https://www.reddit.com/r/ADHD/comments/1qe8kr6/i_keep_failing_every_interview_how_are_you_guys/" }, { t: "‘It's like it is designed to keep me stressed’ — Working sustainably with ADHD or autism — Scandinavian Journal of Occupational Therapy", u: "https://link.springer.com/10.1080/11038128.2022.2143420" }, { t: "Evaluating Digital Interventions for ADHD Diagnosis and Management — Strathprints", u: "https://strathprints.strath.ac.uk/89559/7/Bosnic-etal-DHI-2024-Evaluating-Digital-Interventions-for-ADHD-Diagnosis-and-Management.pdf" }, { t: "I can't apply to jobs. I feel so defeated. — r/ADHD", u: "https://www.reddit.com/r/ADHD/comments/1fua2m6/i_cant_apply_to_jobs_i_feel_so_defeated/" }, { t: "Attention deficit hyperactivity disorder: diagnosis and management — NICE", u: "https://www.nice.org.uk/guidance/ng87/resources/attention-deficit-hyperactivity-disorder-diagnosis-and-management-pdf-1837699732933" }, { t: "A meta-analysis of pharmacological and psychosocial interventions for work-relevant outcomes in adults with ADHD", u: "https://journals.sagepub.com/doi/10.1177/27546330241292984" }, { t: "Taking Charge of Adult ADHD, Second Edition — Russell Barkley", u: "https://www.guilford.com/books/Taking-Charge-of-Adult-ADHD/Russell-Barkley/9781462546855" }, { t: "A systematic review of interventions to support adults with ADHD at work — Frontiers in Psychology", u: "https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2022.893469/full" }, ]; const JobSources = () => (
Our sources

Where this comes from

This page draws on research into ADHD and job searching, occupational studies, expert clinical frameworks, and real accounts from people going through the search. Here's where it comes from.

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

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