forked from fatih-yavuz/links.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-pages.js
111 lines (110 loc) · 4.12 KB
/
example-pages.js
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
users = [{
"name": "Fatih Yavuz",
"username": "fatih",
"description": "Software Engineer @Spotify",
"image": "https://pbs.twimg.com/profile_images/1607095041788416006/tPJYlPgw_400x400.jpg"
},
{
"name": "Sıla Eryılmaz",
"username": "sila",
"description": "Software Engineer @Mollie",
"image": "https://pbs.twimg.com/profile_images/1564258152056602626/1yxj4TXo_400x400.jpg"
},
{
"name": "Ali Göktas",
"username": "a",
"description": "Software Engineer",
"image": "https://media.licdn.com/dms/image/C5603AQHXU-scwq9ZvA/profile-displayphoto-shrink_400_400/0/1590850450625?e=1676505600&v=beta&t=UQ6Mq8rW-D6PHocre_s1Bw9LWHfGvIrkbdlnSJlnooc"
},
{
"name": "Birkan Atıcı",
"username": "birkan",
"description": "Software Engineer",
"image": "https://media-exp1.licdn.com/dms/image/C4D03AQE5ywsv2D-twg/profile-displayphoto-shrink_800_800/0/1622719386755?e=1674691200&v=beta&t=nGp54lHJJL8gw_38rJZY4ty6aNZD7DUSjdIjTKIv7oI"
},
{
"name": "Ali Yılmaz",
"username": "ali",
"description": "Software Engineer @Facebook",
"image": "https://i.ibb.co/nDX800N/IMG-1901.jpg"
},
{
"name": "Ufuk Kodaman",
"username": "kodman",
"description": "Software Engineer @Worldline",
"image": "https://pbs.twimg.com/profile_images/1603390110766178306/ewOd91S2_400x400.jpg"
},
{
"name": "Sezer İltekin",
"username": "iltekin",
"description": "iOS Developer",
"image": "https://pbs.twimg.com/profile_images/1604364419743584257/-DAiAIUk_400x400.jpg"
},
{
"name": "Rıza Sabuncu",
"username": "riza",
"description": "Offensive Security Engineer @Trendyol",
"image": "https://avatars.githubusercontent.com/u/2565849?v=4"
},
{
"name": "Ahmet Buğra Çakıcı",
"username": "ahmet",
"description": "Software Developer @Trendyol",
"image": "https://pbs.twimg.com/profile_images/1479946935641509888/HNcrpB9L_400x400.jpg"
},
{
"name": "Oğuz Albayrak",
"username": "o",
"description": "Software Developer @Booking",
"image": "https://pbs.twimg.com/profile_images/1333437534353887232/6zSAlQ14_400x400.jpg"
},
{
"name": "Erhan Büte",
"username": "erhan",
"description": "CTO @moneytolia",
"image": "https://pbs.twimg.com/profile_images/1471460414911389702/NrQ94G88_400x400.jpg"
},
{
"name": "Onur Şuyalçınkaya",
"username": "onur",
"description": "Frontend Software Engineer @ heycar",
"image": "https://pbs.twimg.com/profile_images/1601239587719979011/E-kvncKx_400x400.jpg"
},
{
"name": "Zeynep Nur Aktas",
"username": "zeynep",
"description": "Software Engineer",
"image": "https://pbs.twimg.com/profile_images/1581993593018908672/VZ5-XkAe_400x400.jpg"
},
{
"name": "Didem Küçükkaraaslan",
"username": "codingwithdidem",
"description": "Frontend Developer @SpikyAI & Youtuber",
"image": "https://pbs.twimg.com/profile_images/1585152388851273728/VbwyNOR7_400x400.jpg"
},
{
"name": "Furkan Kapukaya",
"username": "furkan",
"description": "Junior Software Developer",
"image": "https://pbs.twimg.com/profile_images/1604495746652377091/rA5u_mmC_400x400.jpg",
},
{
"name": "Tolga Gezginiş",
"username": "t",
"description": "Engineering Director @SIMPRA",
"image": "https://pbs.twimg.com/profile_images/1601669168339849217/AeIMm2IY_400x400.jpg"
},
{
"name": "Ömer Ulusal",
"username": "ulusalomer",
"description": "Unemployed",
"image": "https://pbs.twimg.com/profile_images/1065732965773144064/S37yanGM_400x400.jpg"
},
{
"name": "Daniel Zarifpour",
"username": "z",
"description": "Software Engineer",
"image": "https://avatars.githubusercontent.com/u/16494335?v=4"
}
];
users = [...users].sort(() => 0.5 - Math.random()).slice(0, 3);