Add a new team member to all relevant Langfuse team pages. Use when onboarding a new employee who needs to appear on the team/press pages.
Add a new team member to Langfuse. Ask the user for the following information before proceeding:
public/images/people/<key>.jpgOnce you have the information, update the following 3 files:
data/authors.jsonAdd a new entry at the end (before the closing }). Use a lowercase, no-special-chars version of the name as the key (e.g. annabellschafer):
"<key>": {
"firstName": "<first name>",
"name": "<full name>",
"title": "<role>",
"image": "/images/people/<key>.jpg",
"twitter": "<twitter handle>", // omit if not provided
"github": "<github username>", // omit if not provided
"linkedin": "<linkedin handle>" // omit if not provided
}
components-mdx/team-members.mdxAppend a new list item at the end:
- <Full Name>, [@<twitter>](https://x.com/<twitter>), [GitHub](https://github.com/<github>), [LinkedIn](https://www.linkedin.com/in/<linkedin>/)
Omit any social links that were not provided.
content/marketing/press.mdxAppend a new row to the team table (after the last | row):
| **<Full Name>** | <Role> | [Twitter](https://x.com/<twitter>)<br/>[LinkedIn](https://www.linkedin.com/in/<linkedin>/)<br/>[GitHub](https://github.com/<github>) |
Omit any social links that were not provided.