forked from chakra-ui/chakra-ui-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chakra-users.ts
65 lines (63 loc) · 1.24 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
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: '/logos/lattice-logo.svg',
url: 'https://lattice.com/',
type: 'company',
},
{
name: 'TrustPage',
image: '/logos/trust-page.svg',
url: 'https://trustpage.com/',
type: 'company',
},
{
name: 'Shogun',
image: '/logos/shogun-logo.svg',
url: 'https://getshogun.com/',
type: 'company',
},
{
name: 'Brikl',
image: '/logos/brikl-logo.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: '/logos/shootproof-logo.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