-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathteamMembers.ts
More file actions
30 lines (30 loc) · 1.05 KB
/
teamMembers.ts
File metadata and controls
30 lines (30 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export const teamMembers = [
{
name: "Ajay Dhangar",
role: "Founder & CEO",
avatar: "https://github.com/ajay-dhangar.png",
social: {
github: "https://github.com/ajay-dhangar",
twitter: "https://twitter.com/CodesWithAjay",
linkedin: "https://linkedin.com/in/ajay-dhangar",
},
},
{
name: "Mike Chen",
role: "Community Manager",
avatar: "https://images.pexels.com/photos/2379004/pexels-photo-2379004.jpeg?auto=compress&cs=tinysrgb&w=150&h=150&fit=crop",
social: { github: "#", twitter: "#", linkedin: "#" },
},
{
name: "Elena Rodriguez",
role: "Content Creator",
avatar: "https://images.pexels.com/photos/3851253/pexels-photo-3851253.jpeg?auto=compress&cs=tinysrgb&w=150&h=150&fit=crop",
social: { github: "#", twitter: "#", linkedin: "#" },
},
{
name: "David Kim",
role: "Technical Mentor",
avatar: "https://images.pexels.com/photos/3756681/pexels-photo-3756681.jpeg?auto=compress&cs=tinysrgb&w=150&h=150&fit=crop",
social: { github: "#", twitter: "#", linkedin: "#" },
},
];