forked from dddwa/dddperth-website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sponsors.ts
43 lines (41 loc) · 1.18 KB
/
sponsors.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
import { Sponsor, SponsorType } from './types'
const Sponsors: Sponsor[] = [
{
imageUrl: '/static/images/sponsors/2019-ndc-sydney.png',
name: 'NDC Sydney',
type: SponsorType.Silver,
url: 'https://ndcsydney.com',
},
{
imageUrl: '/static/images/sponsors/2019-telstra-purple-logo.png',
name: 'Telstra Purple',
type: SponsorType.Gold,
url: 'https://www.telstra.com.au/purple',
},
{
imageUrl: '/static/images/sponsors/2019-GitHub_Logo.png',
name: 'GitHub',
type: SponsorType.Gold,
url: 'https://github.com',
},
{
imageUrl: '/static/images/sponsors/2019-Microsoft-logo_rgb_c-gray.png',
name: 'Microsoft Cloud Advocates & Microsoft Australia',
type: SponsorType.Gold,
url: 'https://developer.microsoft.com/en-us/advocates/index.html',
},
{
imageUrl: '/static/images/sponsors/2019-muses-tm-logo.png',
name: 'Muses Code JS',
type: SponsorType.Community,
url: 'https://musescodejs.org/sydney.html',
},
{
imageUrl: '/static/images/sponsors/yow.png',
name: 'YOW!',
type: SponsorType.Service,
url: 'https://www.yowconference.com/',
serviceProvided: "Lock Note Speaker"
}
]
export default Sponsors