import { EnvCard } from '@/components/EnvCard'; import { StatusPill } from '@/components/StatusPill'; import { fetchEnvironments, fetchHealth } from '@/lib/fetcher'; import { SERVICE_ENV } from '@/lib/constants'; export default async function HomePage() { const [envs, health] = await Promise.all([fetchEnvironments(), fetchHealth()]); return (

Overall health

Uptime: {health.uptime}s

Environment: {SERVICE_ENV}

App router • Edge-ready

{envs.map((env) => ( ))}
); }