// Pricing & Process sections const Pricing = () => { const [billing, setBilling] = React.useState('monthly'); // monthly | annual const plans = [ { key: 'starter', name: 'Starter', tagline: 'For sole traders & one-page sites', monthly: 12, annual: 10, features: [ 'Single page website', 'UK hosting included', 'Mobile responsive design', 'Contact form + email forwarding', 'SSL certificate & domain setup', 'Small content edits each month', ], cta: 'Start your website', variant: 'plain', }, { key: 'business', name: 'Business', tagline: 'Our most popular plan', monthly: 25, annual: 21, features: [ 'Up to 6 pages, fully designed', 'SEO basics — meta, schema, sitemap', 'WhatsApp & enquiry form integration', 'UK hosting & domain included', 'Google Business Profile setup', 'Monthly content updates', ], cta: 'Choose Business', variant: 'feat', ribbon: 'Most popular', }, { key: 'growth', name: 'Growth', tagline: 'For businesses ready to rank', monthly: 49, annual: 42, features: [ 'Everything in Business, plus:', 'Blog setup & monthly article', 'Ongoing local SEO optimisation', 'Performance & speed tuning', 'Priority support — same-day reply', 'Quarterly growth review call', ], cta: 'Choose Growth', variant: 'plain', }, ]; return (
Pricing

Professional business websites from just £12 a month.

Pay monthly, cancel anytime. Hosting, support and small changes are always included — no surprise invoices, ever.

{plans.map(p => { const price = billing === 'monthly' ? p.monthly : p.annual; return (
{p.ribbon && {p.ribbon}}
{p.tagline}

{p.name}

£{price}
per month · billed {billing === 'monthly' ? 'monthly' : 'annually'}
    {p.features.map((f, i) => (
  • {f}
  • ))}
{p.cta}
); })}
One-time setup from £149 · No long contracts · 14-day money-back guarantee on setup
); }; const Process = () => { const steps = [ { n: '01', t: 'Consultation', d: 'A free 20-minute call to understand your business, customers and goals — no commitment.' }, { n: '02', t: 'Planning', d: 'We map out pages, copy and design direction. You approve a clear plan before we build anything.' }, { n: '03', t: 'Development', d: `We design and build your site in a private preview. You review, we refine until it's right.` }, { n: '04', t: 'Launch & support', d: 'We go live, set up tracking, and stay on as your ongoing team for updates and growth.' }, ]; return (
Process

A clear, calm 4-step process — most sites live in under 14 days.

One named contact from first call through to launch. No account managers, no ticket queues.

{steps.map((s, i) => (
{s.n}

{s.t}

{s.d}

))}
); }; Object.assign(window, { Pricing, Process });