forked from rescript-lang/rescript-lang.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOurUsers.res
49 lines (48 loc) · 1.02 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
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",
}),
]