import Link from 'next/link'; import { StatusPill } from './StatusPill'; import type { Env } from '@/types'; const statusCopy: Record = { healthy: 'All systems go', warning: 'Investigate warnings', degraded: 'Reduced capacity' }; export function EnvCard({ env }: { env: Env }) { return (

{env.region.toUpperCase()}

{env.name}

Updated {new Date(env.updatedAt).toLocaleTimeString()}

); }