-
Notifications
You must be signed in to change notification settings - Fork 2
/
data.ts
32 lines (29 loc) · 853 Bytes
/
data.ts
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
export const navigationData = [
{
pathName :"About Us",
href : "/about"
},
]
export const teamDetails = [
{
Name:"Adrian E.",
imageUrl:"/images/adrian.png",
Tagline:"Full-Stack Developer",
LinkedinUrl:"https://www.linkedin.com/",
GithubUrl:"https://github.com/GreyActOwl1"
},
{
Name:"Aryan Kumar",
imageUrl:"/images/aryan.png",
Tagline:"Backend Web Developer",
LinkedinUrl:"https://www.linkedin.com/in/aryan-kumar-10a548297/",
GithubUrl:"https://github.com/aryankumar2828"
},
{
Name:"Syed Shahmir Sultan",
imageUrl:"/images/shahmir.png",
Tagline:"Frontend Web Developer",
LinkedinUrl:"https://www.linkedin.com/in/syedshahmirsultan/",
GithubUrl:"https://github.com/syedshahmirsultan"
},
]