import { Card, CardHeader, CardTitle, CardContent, } from "@/components/ui/card"; import { getAllUsersCount } from "@/lib/api"; export async function UsersCount() { const usersCount = await getAllUsersCount().catch(() => null); const count = usersCount?.count ?? null; return ( Community {count === null ? (

Could not load member count.

) : count === 0 ? (

Be the first to join!

) : (
{count}
members
)}
); }