import Link from "next/link"; import type { Plan } from "@/lib/pricing"; export default function Pricing({ plans }: { plans: Plan[] }) { return (

Simple plans with real SLAs

Pick the care level that matches your traffic and risk. Month-to-month, 30-day cancel.

{plans.map((p, i) => (
{p.popular && ( )}
{p.name}
{p.price}
{p.periodicity && (
{p.periodicity}
)}
{p.description && (

{p.description}

)}
    {p.features.map((f, idx) => (
  • {f}
  • ))}
{p.cta.label}

Includes DNS/email monitoring, automated backups with restore verification, uptime & SSL watch.

))}

Need 24/7 paging and 1-hour first response? Choose Mission-Critical.

); }