30 lines
571 B
TypeScript
30 lines
571 B
TypeScript
export type Author = {
|
|
name: string;
|
|
role: string;
|
|
image: {
|
|
src: string;
|
|
alt?: string;
|
|
};
|
|
};
|
|
|
|
type Authors = {
|
|
[key: string]: Author;
|
|
};
|
|
export const authors: Authors = {
|
|
james: {
|
|
name: "James Perkins",
|
|
role: "Co-Founder / CEO",
|
|
image: { src: "/images/team/james.jpg" },
|
|
},
|
|
andreas: {
|
|
name: "Andreas Thomas",
|
|
role: "Co-Founder",
|
|
image: { src: "/images/team/andreas.jpeg" },
|
|
},
|
|
wilfred: {
|
|
name: "Wilfred Almeida",
|
|
role: "Freelance Writer",
|
|
image: { src: "/images/blog-images/ocr-post/wilfred.jpg" },
|
|
},
|
|
};
|