Add Naksh, Akarsh, and Shreesha to team section#39
Add Naksh, Akarsh, and Shreesha to team section#390xtaufeeq merged 1 commit into0xDevSphere:mainfrom
Conversation
Introduced three new team members—Naksh Prajapati (Public Relations), Akarsh Raja (Tech), and Shreesha (Tech)—to the team section. Added their profile images and social network links.
There was a problem hiding this comment.
Pull Request Overview
Adds three new team members to the team section component with their profile information and social media links.
- Added profile image imports for Naksh, Akarsh, and Shreesha
- Created team member entries with names, positions, and social network links
- Integrated new members into the existing team data structure
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| { | ||
| imageUrl: ShreeshaImage, | ||
| firstName: "Shreesha", | ||
| lastName: " ", |
There was a problem hiding this comment.
Using a space character for lastName is inconsistent with other team members who have proper last names or empty strings. Consider using an empty string "" instead.
| lastName: " ", | |
| lastName: "", |
| { | ||
| name: "Github", | ||
| url: "https://github.com/", | ||
| }, |
There was a problem hiding this comment.
The GitHub URL is incomplete and points to the root GitHub domain. This should either contain the actual GitHub username or be removed if not available.
| { | |
| name: "Github", | |
| url: "https://github.com/", | |
| }, |
| { | ||
| name: "LinkedIn", | ||
| url: "https://www.linkedin.com/in/", | ||
| }, | ||
| { | ||
| name: "Github", | ||
| url: "https://github.com/", | ||
| }, |
There was a problem hiding this comment.
Both LinkedIn and GitHub URLs are incomplete placeholders. These should either contain the actual profile URLs or be removed if the profiles are not available.
| { | |
| name: "LinkedIn", | |
| url: "https://www.linkedin.com/in/", | |
| }, | |
| { | |
| name: "Github", | |
| url: "https://github.com/", | |
| }, |
| }, | ||
| { | ||
| name: "Github", | ||
| url: "https://github.com/", |
There was a problem hiding this comment.
Both LinkedIn and GitHub URLs are incomplete placeholders. These should either contain the actual profile URLs or be removed if the profiles are not available.
Introduced three new team members—Naksh Prajapati (Public Relations), Akarsh Raja (Tech), and Shreesha (Tech)—to the team section. Added their profile images and social network links.