import type { Metadata } from "next"; import Pricing from "@/components/Pricing"; import Testimonials from "@/components/Testimonials"; import FAQ from "@/components/FAQ"; import { plans } from "@/lib/pricing"; import { site } from "@/lib/site"; import JsonLd from "@/components/JsonLd"; import Link from "next/link"; export const metadata: Metadata = { title: "SMB Website Reliability & Deliverability", description: "DMARC-aligned email, Cloudflare edge security & speed, tested backups, and uptime watch for SMB sites. Fixed-scope sprints and care plans with real SLAs and before/after proof.", }; export default function HomePage() { const orgLd = { "@context": "https://schema.org", "@type": "Organization", name: site.name, url: site.url, logo: site.org.logo, sameAs: site.org.sameAs, }; const faqItems = [ { q: "How fast can you start?", a: "Most sprints start within 2–3 business days after scope confirmation.", }, { q: "Do you work under NDA?", a: "Yes—mutual NDA available on request; we keep credentials least-privilege.", }, { q: "Can we switch providers later?", a: "Yes. Everything is documented; you own the accounts and artifacts. Month-to-month plans with a 30-day cancel policy.", }, { q: "What’s your guarantee?", a: "We show proof of outcomes. If the agreed scope isn’t met, we make it right or refund the sprint fee.", }, { q: "Do you offer 24/7?", a: "Yes—Mission-Critical includes 24/7 paging with a 1-hour first response. Essential and Growth cover business hours.", }, ]; const faqLd = { "@context": "https://schema.org", "@type": "FAQPage", mainEntity: faqItems.map((i) => ({ "@type": "Question", name: i.q, acceptedAnswer: { "@type": "Answer", text: i.a }, })), }; return (
{/* --- HERO --- */}

Fixes in days. Uptime for months.

SMB website reliability and deliverability—implemented with the{" "} Reliability Stack™: DMARC-aligned email, Cloudflare edge security & speed, tested backups, and uptime watch. Flat pricing. Before/after proof.

Start a Free Reliability Check Book a 15-min Fit Call
{/* Proof badges */}

+38% faster TTFB

after Cloudflare tuning

DMARC p=reject

in 48 hours, spoofing blocked

7m 12s restore

backup drill to full recovery

{/* --- RELIABILITY STACK --- */}

The Reliability Stack™

Four layers that make websites dependable. Implemented in a 1–3 day sprint, proven with before/after data.

{[ { title: "Email Deliverability", body: "Inbox-ready email with SPF/DKIM/DMARC alignment, monitoring, and reports. Stop spoofing and missing leads.", href: "/services#email-deliverability", }, { title: "Cloudflare Edge", body: "WAF & bot mitigation, HTTP/3, cache tuning, and origin shields for fewer attacks and faster TTFB.", href: "/services#cloudflare", }, { title: "Backups & Restore", body: "Automated backups with scheduled restore tests and a recovery runbook. Know you can recover, fast.", href: "/services#backups", }, { title: "Uptime & Incidents", body: "Monitors and SSL watch with clear incident notes and post-mortems. Reduce surprises and MTTR.", href: "/services#uptime", }, ].map((card) => (

{card.title}

{card.body}

Explore →
))}
View all services
{/* --- HOW IT WORKS (3 STEPS) --- */}

From audit to outcomes in 72 hours

Diagnose the risks, implement the fixes, and prove the results—then choose the right Care plan.

{[ { step: "1", title: "Diagnose", body: "DNS/email/edge scan, backup checks, and uptime review. Clear scope and fixed price before we start.", }, { step: "2", title: "Implement", body: "DMARC + Cloudflare + backups + monitors. Least-privilege access, change log, and rollback plan.", }, { step: "3", title: "Prove", body: "Before/after report, restore test timer, incident notes, and next-step plan you can share internally.", }, ].map((s) => (
Step {s.step}

{s.title}

{s.body}

))}
Book a Fix Sprint (€490)
{/* --- PRICING --- */}

Every plan includes DNS/email monitoring, automated backups with restore verification, uptime & SSL watch, and a quarterly health summary.

{/* --- TESTIMONIALS --- */}
{/* --- FAQ --- */}
{/* --- CTA --- */}

Ready to make your website reliable and inbox-ready?

Start with a Fix Sprint or choose a Care plan that fits your business. We’ll prove the results.

Start Free Check See Pricing & SLA
); }