export const getInitialLetter = (text: string) => {
  const textSplit = text.split(" ");
  const firstLetter = textSplit[0].charAt(0);
  const lastLetter = textSplit[textSplit.length - 1].charAt(0);
  return `${firstLetter}${lastLetter}`;
};
