forked from rescript-lang/rescript-lang.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOurUsers.res
104 lines (103 loc) · 2.16 KB
/
OurUsers.res
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
type company = Logo({name: string, url: string, path: string})
let companies = [
Logo({
name: "Facebook Messenger",
url: "https://messenger.com",
path: "/static/lp/messenger.svg",
}),
Logo({
name: "Facebook",
url: "https://messenger.com",
path: "/static/lp/facebook.svg",
}),
Logo({
name: "Rohea",
url: "https://rohea.com",
path: "/static/lp/rohea.svg",
}),
Logo({
name: "CCA",
url: "https://cca.io",
path: "/static/lp/cca-io.svg",
}),
Logo({
name: "Nomadic Labs",
url: "https://nomadic-labs.com",
path: "/static/lp/nomadic_labs.svg",
}),
Logo({
name: "Draftbit",
url: "https://draftbit.com",
path: "/static/lp/draftbit.svg",
}),
Logo({
name: "Pupilfirst",
url: "https://pupilfirst.com",
path: "/static/lp/pupilfirst.svg",
}),
Logo({
name: "Aivero",
url: "https://aivero.com",
path: "/static/lp/aivero.svg",
}),
Logo({
name: "Walnut",
url: "https://walnut.io",
path: "/static/lp/walnut.svg",
}),
Logo({
name: "BeOp",
url: "https://beop.io",
path: "/static/lp/beop.svg",
}),
Logo({
name: "Arizon",
url: "https://arizon.se",
path: "/static/lp/arizon.svg",
}),
Logo({
name: "Stencil",
url: "https://usestencil.com",
path: "/static/lp/stencil.svg",
}),
Logo({
name: "Portolab",
url: "https://portolab.com.br",
path: "/static/lp/portolab.svg",
}),
Logo({
name: "Tiny",
url: "https://tiny.cloud",
path: "/static/lp/tiny.svg",
}),
Logo({
name: "Komplio",
url: "https://kompl.io",
path: "/static/lp/komplio.svg",
}),
Logo({
name: "ohne-makler.net",
url: "https://www.ohne-makler.net",
path: "/static/lp/ohne-makler.svg",
}),
Logo({
name: "Wino",
url: "https://wino.fr",
path: "/static/lp/wino.svg",
}),
Logo({
name: "Humaans",
url: "https://humaans.io",
path: "/static/lp/humaans.svg",
}),
Logo({
name: "SeaMonster Studios",
url: "https://seamonsterstudios.com",
path: "/static/lp/seamonster-studios.svg",
}),
Logo({
name: "Camelo",
url: "https://camelohq.com",
path: "/static/lp/camelo.svg",
}),
]