Openstatus
www.openstatus.dev
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}