Press n or j to go to the next uncovered block, b, p or k for the previous block.
export const getInitials = (firstName: string, lastName: string) => `${firstName.charAt(0)}${lastName.charAt(0)}`.toUpperCase();