export const upperCaseFirstLetter = (text: string) => `${text[0].toUpperCase()}${text.substring(1)}`