diff --git a/apps/www/src/components/feat/server-list/statistics.tsx b/apps/www/src/components/feat/server-list/statistics.tsx index 500722e..2ce00c6 100644 --- a/apps/www/src/components/feat/server-list/statistics.tsx +++ b/apps/www/src/components/feat/server-list/statistics.tsx @@ -66,7 +66,17 @@ export function Statistics({ - {totalPlayers} + totalPlayers + ? "text-red-400" + : "text-green-400" + : "" + } + > + {totalPlayers} + {!averagesLoading && !error && ( - {totalServers} + totalServers + ? "text-red-400" + : "text-green-400" + : "" + } + > + {totalServers} + {!averagesLoading && !error && ( Top Server
- {topServer.name} + {topServer.name}
);