-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathteam.ts
More file actions
68 lines (66 loc) · 2.52 KB
/
team.ts
File metadata and controls
68 lines (66 loc) · 2.52 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
export interface Socials {
github?: string;
twitter?: string;
linkedin?: string;
}
export interface Member {
slug: string;
name: string;
role: string;
image: string;
bio: string;
email: string;
location: string;
skills: string[];
socials: Socials;
}
export const teamMembers: Member[] = [
{
slug: "ajay-dhangar",
name: "Ajay Dhangar",
role: "Founder & CEO",
image: "https://github.com/ajay-dhangar.png",
bio: "Visionary developer and open-source advocate. Ajay founded CodeHarborHub to democratize tech education and build a collaborative ecosystem for developers worldwide.",
email: "ajaydhangar49@gmail.com",
location: "Mandsaur, MP, India",
skills: ["Full Stack Dev", "System Design", "Open Source", "Leadership"],
socials: {
twitter: "https://x.com/CodesWithAjay",
github: "https://github.com/ajay-dhangar",
linkedin: "https://www.linkedin.com/in/ajay-dhangar/",
},
},
{
slug: "sarah-jenkins",
name: "Sarah Jenkins",
role: "Full Stack Developer",
image: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&q=80&w=500",
bio: "Expert in building scalable MERN stack applications. Sarah leads the frontend architecture and ensures a seamless user experience across the platform.",
email: "sarah@example.com",
location: "London, UK",
skills: ["React", "Node.js", "MongoDB", "Tailwind CSS"],
socials: { twitter: "#", github: "#", linkedin: "#" },
},
{
slug: "jhon-smith",
name: "Jhon Smith",
role: "Web Designer",
image: "https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&q=80&w=500",
bio: "Passionate about clean UI and accessible design. Jhon crafts the visual identity of CodeHarborHub, making complex documentation easy to navigate.",
email: "jhon@example.com",
location: "New York, USA",
skills: ["UI/UX", "Figma", "Accessibility", "CSS3"],
socials: { twitter: "#", github: "#", linkedin: "#" },
},
{
slug: "jake-nackos",
name: "Product Manager",
role: "Product Manager",
image: "https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&q=80&w=500",
bio: "Strategist focused on community growth. Jake bridges the gap between user feedback and technical implementation to keep our roadmap on track.",
email: "jake@example.com",
location: "Berlin, Germany",
skills: ["Product Strategy", "Agile", "Community Building"],
socials: { twitter: "#", github: "#", linkedin: "#" },
},
];