Openstatus www.openstatus.dev
at 4c0f4c00a38753a5d0dfd7e7b7b7706dec6f1503 19 lines 478 B view raw
1export const author = { 2 "Maximilian Kaske": { 3 name: "Maximilian Kaske", 4 url: "https://x.com/mxkaske", 5 image: "/assets/authors/max.png", 6 }, 7 "Thibault Le Ouay Ducasse": { 8 name: "Thibault Le Ouay Ducasse", 9 url: "https://bsky.app/profile/thibaultleouay.dev", 10 image: "/assets/authors/thibault.jpeg", 11 }, 12} as const; 13 14export function getAuthor(name: string) { 15 if (name in author) { 16 return author[name as keyof typeof author]; 17 } 18 return name; 19}