forked from chakra-ui/chakra-ui-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchakra-users.ts
69 lines (67 loc) · 1.64 KB
/
chakra-users.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
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
interface User {
name: string
image: string
url: string
type: "company" | "project" | "portfolio"
}
const users: User[] = [
{
name: "Echobind",
image: "/logos/echobind.svg",
url: "https://echobind.com/",
type: "company",
},
{
name: "Lattice",
image:
"https://assets-global.website-files.com/5b5a66e9f3166b36708705fa/5d9a24a24aefbe7193967c21_logo.svg",
url: "https://lattice.com/",
type: "company",
},
{
name: "TrustPage",
image: "/logos/trust-page.svg",
url: "https://trustpage.com/",
type: "company",
},
{
name: "Shogun",
image:
"https://assets-global.website-files.com/6019b5ca8a4b1bb6fcbcdbe1/603965ab496482ca15b0ecfb_shogunlogo-black.svg",
url: "https://getshogun.com/",
type: "company",
},
{
name: "Brikl",
image:
"https://www.brikl.com/hs-fs/hubfs/Brand%20Assets/BRIKL-LOGO-removebg-preview.png?width=667&height=231&name=BRIKL-LOGO-removebg-preview.png",
url: "https://www.brikl.com/",
type: "company",
},
{
name: "Usability Hub",
image: "/logos/usability-hub.png",
url: "https://usabilityhub.com/",
type: "company",
},
{
name: "Shoot Proof",
image:
"https://assets-global.website-files.com/5e5fc9d32793216b14649599/5ec7e43bf972fae797ba4ffb_ShootProof%20Logo%20-%20Blue%20nav.png",
url: "https://www.shootproof.com/hp",
type: "company",
},
{
name: "Tuteria",
image: "/logos/tuteria.png",
url: "https://tuteria.com/",
type: "company",
},
{
name: "Virus Cafe",
image: "🥰 Virus Cafe",
url: "https://virus.cafe/",
type: "project",
},
]
export default users