/* Integrations + Testimonial + FAQ + CTA + Footer */ function Integrations() { const tools = [ 'GitHub','GitLab','Jira','Linear','Slack','PagerDuty', 'Datadog','Sentry','Vercel','CircleCI','Playwright','Cypress', ]; return (
06 — Integrations

Plugs into the stack you already run.

Read-only access to your repo. Two-way sync with your tracker. Findings show up where your team already works.

{tools.map((n, i) => (
{n[0]}
{n}
● CONNECTED
))}
); } function Testimonial() { return (
07 — IN PRODUCTION
"Our QA lead and the agent deleted our entire QA backlog in a weekend. On day two they caught a payments regression that would have cost us a Sev-1."
Priya Venkataraman
VP ENG · MERCURY
{[ ['−84%','REGRESSIONS'],['3.2×','RELEASE FREQ'],['$1.4M','QA SPEND SAVED'], ].map(([n,l]) => (
{n}
{l}
))}
); } function FAQ() { const items = [ { q: 'Is this just a tool, or do you provide engineers too?', a: 'Both. Every account gets a dedicated Silicon Valley QA lead — a senior engineer with 10+ years at FAANG-tier companies — who works alongside your team. The AI agent is the leverage they bring with them. You hire qafactory; you don\'t buy a SaaS and hope.' }, { q: 'Where is your QA team based?', a: 'Our QA leads are headquartered in Silicon Valley, with the broader team distributed across San Francisco, New York, London, and Bangalore. Coverage runs follow-the-sun so a human is always on for your timezone.' }, { q: 'How long does setup take?', a: 'Roughly eight minutes for the agent: install the GitHub app, point us at staging, and the first agent-generated PR lands within the hour. Your QA lead joins your Slack the same day.' }, { q: 'Will the agent push code without review?', a: 'No. Every test the agent writes is opened as a normal PR, reviewed by your QA lead, and owned by your team in your existing test framework.' }, { q: 'What about flaky tests?', a: 'On day one your QA lead triages your existing suite with the agent, root-causes flakes, and either fixes or quarantines them. Most teams see flake rates drop ~80% in week one.' }, { q: 'Can I self-host?', a: 'Yes. Fully-managed cloud, BYOC on AWS/GCP, and air-gapped on-prem are all supported. Source code never leaves your boundary in BYOC mode.' }, { q: 'How is this priced?', a: 'Flat monthly per dedicated QA lead, with unlimited agent runs and unlimited health sweeps. No per-execution surprise bills. 14-day free trial, no card.' }, { q: 'Is it SOC 2?', a: 'SOC 2 Type II, ISO 27001, GDPR, HIPAA. Full audit log piped to your SIEM.' }, ]; const [open, setOpen] = React.useState(0); return (
08 — Questions

The things people ask before signing.

{items.map((it, i) => (
{open === i && (
{it.a}
)}
))}
); } function CTA() { return (
QA LEADS ONLINE · ACCEPTING NEW ACCOUNTS

Stop testing.
Start shipping.

14-day free trial. No credit card. Your dedicated QA lead joins your Slack within the hour — and the first AI-generated test PR lands the same day.

Start free trial Book a 20-min demo
SILICON VALLEY · NEW YORK · LONDON · BANGALORE — SOC 2 · GDPR · HIPAA
); } function Footer() { return ( ); } Object.assign(window, { Integrations, Testimonial, FAQ, CTA, Footer });