import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'; import { useInitials } from '@/hooks/use-initials'; import { type User } from '@/types'; export function UserInfo({ user, showEmail = false, }: { user: User | null | undefined; showEmail?: boolean; }) { const getInitials = useInitials(); if (!user) { return