import Image from "next/image"; import Link from "next/link"; interface UserItem { id: string; username: string | null; displayUsername: string | null; image: string | null; bio: string | null; } interface UserListProps { users: UserItem[]; emptyMessage: string; } export function UserList({ users, emptyMessage }: UserListProps) { if (users.length === 0) { return (