/* extras.jsx — HowWeWork (process) + FAQ (accordion) */
const { useState: useStateX } = React;
const STEPS = [
{ h: 'Free audit', p: 'We start with a free Digital Growth Audit — a clear read on where you stand and the fastest wins. No pitch.' },
{ h: 'Strategy', p: 'We map a prioritised roadmap across SEO, web and automation — tied to revenue, not vanity metrics.' },
{ h: 'Build & optimise', p: 'We execute in disciplined sprints: technical fixes, content, builds and link campaigns.' },
{ h: 'Automate', p: 'We connect the workflows and AI agents that capture, qualify and nurture every lead.' },
{ h: 'Report & scale', p: 'Transparent monthly reporting keeps the strategy honest — and compounding over time.' },
];
function HowWeWork() {
return (
How we work
A clear, accountable process.
No black boxes. You always know exactly what is happening, why, and what comes next.
{STEPS.map((s, i) => (
-
{String(i + 1).padStart(2, '0')}
{s.h}
{s.p}
))}
);
}
const FAQS = [
{ q: 'How quickly will I see results?', a: 'It depends on the work. Technical and conversion fixes can move the needle in weeks; durable SEO gains typically compound over three to six months. We set realistic expectations in the audit — and report progress every month.' },
{ q: 'Do you lock me into a long contract?', a: 'No. Engagements are month-to-month. We would rather earn the relationship with results than trap you in a contract.' },
{ q: 'What does the free audit include?', a: 'A clear read on your technical health, search visibility and automation opportunities, plus a prioritised plan of what to fix first. No pitch — just clarity you can act on, with or without us.' },
{ q: 'Which industries do you work with?', a: 'We focus on e-commerce, professional services, SaaS, health & wellness, and construction & property — though our approach adapts well across niches.' },
{ q: 'Can I start with just one service?', a: 'Absolutely. You can start with SEO, web or automation alone. They simply compound faster when run together as one growth engine.' },
{ q: 'Where are you based?', a: 'We are based in the United Kingdom and work with clients globally. Support is available around the clock.' },
];
function FaqItem({ item, open, onToggle }) {
return (
);
}
function Faq() {
const [open, setOpen] = useStateX(0);
return (
FAQ
Questions, answered
before you ask.
Still unsure? The free audit is the fastest way to get clarity — no commitment.
{FAQS.map((f, i) => (
setOpen(open === i ? -1 : i)} />
))}
);
}
Object.assign(window, { HowWeWork, Faq });