import Image from "./image"; type AvatarProps = { name: string; picture: string; }; export default function Avatar({ name, picture }: AvatarProps) { return (