Add Our Team directory page#57
Merged
Merged
Conversation
Adds a flat, filterable team directory at /about/our-team as a Docusaurus page (TeamDirectory React component + data.json), and registers it in the navbar "About us" dropdown and sidebar.
|
🧹 Preview deployment cleaned up The preview deployment for this PR has been removed since the PR was closed. |
There was a problem hiding this comment.
Pull request overview
Adds a new “Our Team” directory page to the Docusaurus About docs section, backed by a custom React component and JSON data, and exposes it via the navbar and sidebar navigation.
Changes:
- Introduces
TeamDirectoryReact component with tag-based filtering and person cards. - Adds styling and a
data.jsondataset for team members. - Registers the new page in
sidebars.jsand the “About us” navbar dropdown; addsabout/our-team.mdx.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| src/components/TeamDirectory/styles.module.css | New CSS module for the directory layout, filter chips, and person cards |
| src/components/TeamDirectory/index.js | New TeamDirectory component implementing filtering UI, cards, and mailto links |
| src/components/TeamDirectory/data.json | New team member dataset consumed by the directory |
| sidebars.js | Adds our-team doc to the About sidebar |
| docusaurus.config.js | Adds “Our Team” link to the navbar “About us” dropdown |
| about/our-team.mdx | New docs page that renders the TeamDirectory component |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+52
to
+56
| <span | ||
| key={tag} | ||
| className={clsx(styles.personTag, activeTags.has(tag) && styles.personTagActive)} | ||
| onClick={() => onToggleTag(tag)} | ||
| > |
Comment on lines
+97
to
+101
| <span | ||
| key={tag} | ||
| className={clsx(styles.filterTag, activeTags.has(tag) && styles.filterTagActive)} | ||
| onClick={() => toggleTag(tag)} | ||
| > |
| ))} | ||
| </div> | ||
| </div> | ||
| <a className={styles.personEmail} href={`mailto:${person.email}`} title={person.email}> |
Comment on lines
+56
to
+59
| .filterTag:hover { | ||
| background: #2e4a63; | ||
| color: #fff; | ||
| } |
Comment on lines
+158
to
+161
| .personTag:hover { | ||
| background: #3578e5; | ||
| color: #fff; | ||
| } |
Comment on lines
+19
to
+21
| "name": "Jean Lelong", | ||
| "role": "Senior Ai Researcher", | ||
| "email": "jean.lelong@ekimetrics.com", |
Comment on lines
+4
to
+8
| "id": "duong_nguyen", | ||
| "name": "Duong Nguyen", | ||
| "role": "Senior AI Research Lead", | ||
| "email": "duong.nguyen@ekimetrics.com", | ||
| "tags": ["Time Series", "Forecasting", "Tabular Foundation Models"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a flat, filterable team directory at /about/our-team as a Docusaurus page (TeamDirectory React component + data.json), and registers it in the navbar "About us" dropdown and sidebar.