export const skillsByName: { [key: string]: Skill } = skills.reduce(
  (acc, c) => {
    acc[c.name] = c
    return acc
  },