import Link from 'next/link'; import { StatusDot } from '@/components/ui/primitives'; import { fmtInt, fmtPct } from '@/lib/format'; import { Time } from '@/lib/time'; import type { Probe } from '@/lib/types'; /** Probe network strip — who is measuring, from where, and whether they are fresh. Server component. */ export function ProbeStrip({ probes }: { probes: Probe[] | null }) { if (!probes?.length) return

Probe list unavailable.

; return ( ); }