-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsponsorInfos.ts
153 lines (150 loc) · 5.79 KB
/
sponsorInfos.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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
export type sponsorInfo = {
href: string;
svg: string;
alt: string;
description: string;
};
export const diamondLinks: sponsorInfo[] = [
{
href: 'https://www.janestreet.com/',
svg: '/assets/janestreet_logo.svg',
alt: 'Jane Street logo',
description:
'Jane Street is a research-driven trading firm where curious people work together on deep problems.'
},
{
href: 'https://careers.tiktok.com/',
svg: '/assets/tiktok_logo.svg',
alt: 'Tiktok logo',
description:
'TikTok is a social media platform for creating, sharing and discovering short videos.'
}
];
export const goldLinks: sponsorInfo[] = [
{
href: 'https://www.atlassian.com/',
svg: '/assets/atlassian_logo.svg',
alt: 'Atlassian logo',
description:
'Atlassian Corporation is an Australian-American software company that develops products for software developers, and project managers among other groups.'
},
{
href: 'https://www.citadel.com/',
svg: '/assets/citadel_logo.svg',
alt: 'Citadel logo',
description:
"We are an alternative investment manager working on behalf of the world's preeminent institutions. Discover our work, teams, careers and more."
},
{
href: 'https://www.imc.com/ap/',
svg: '/assets/imc_logo.svg',
alt: 'IMC logo',
description:
'For three decades IMC has provided liquidity to the financial markets globally. Specialised in algorithmic trading and advanced technology, we set the pace for the evolution of market making.'
},
{
href: 'https://neara.com/',
svg: '/assets/neara_logo.svg',
alt: 'Neara logo',
description:
'Neara electric utility software is a physics-enabled platform that builds 3D interactive models of critical infrastructure networks and assets.'
},
{
href: 'https://safetyculture.com/',
svg: '/assets/safetyculture_logo.svg',
alt: 'SafetyCulture logo',
description:
'Get to the root cause of workplace trends with total visibility across your organization. Use data from completed inspections, reported incidents, sensors, and asset history to keep workers safe, and prevent things from happening in the first place.'
},
{
href: 'https://www.zurich.com.au/',
svg: '/assets/zurich_logo.svg',
alt: 'Zurich logo',
description:
"Zurich is one of the world's most experienced insurers whose strategy focuses on providing the right general insurance and life insurance solutions for its clients."
}
];
export const silverLinks: sponsorInfo[] = [
{
href: 'https://appian.com/',
svg: '/assets/appian_logo.svg',
alt: 'Appian logo',
description:
'Appian Corporation is an American cloud computing and enterprise software company headquartered in McLean, Virginia, part of the Dulles Technology Corridor. The company sells a platform as a service for building enterprise software applications.'
},
{
href: 'https://www.flowtraders.com/',
svg: '/assets/flowtraders_logo.svg',
alt: 'FlowTraders logo',
description:
'Flow Traders is a proprietary trading firm. A market maker, it provides liquidity in the securities market by using high frequency and quantitative trading strategies.'
},
{
href: 'https://www.jds.net.au/',
svg: '/assets/jds_logo.svg',
alt: 'jds logo',
description: "JDS Australia delivers specialist services in a set of technologies and capabilities that ensure critical IT systems work.",
},
{
href: 'https://www.macquarie.com.au/',
svg: '/assets/macquarie_logo.svg',
alt: 'Macquarie logo',
description:
'Macquarie Bank offers transaction accounts, home loans, credit cards, online banking, business banking and more.'
},
{
href: 'https://optiver.com/',
svg: '/assets/optiver_logo.svg',
alt: 'Optiver logo',
description:
'Optiver is a global market maker. As one of the oldest market making firms in the world, Optiver has been improving financial markets since 1986.'
},
{
href: 'https://quantium.com/',
svg: '/assets/quantium_logo.svg',
alt: 'Quantium logo',
description:
"We combine the best of human and artificial intelligence to power possibilities for individuals, organisations and society. Through the application of world leading, advanced analytics solutions, we help our clients solve their most complex problems."
},
{
href: 'https://quickli.com.au/',
svg: '/assets/quickli_logo.svg',
alt: 'Quickli logo',
description:
'Bringing 30+ lender calcs into one, easy-to-use interface delivering accurate results and relevant policy insights for even the most complex scenarios.'
},
{
href: 'https://www.revolutionise.com.au/',
svg: '/assets/revsport_logo.svg',
alt: 'revolutioniseSport logo',
description:
'revolutioniseSPORT is an online management platform for sports of all shapes and sizes.'
},
{
href: 'https://www.recordpoint.com/',
svg: '/assets/recordpoint_logo.svg',
alt: 'RecordPoint logo',
description: 'Manage all your data and records in one central place – without moving them.'
},
{
href: 'https://sig.com/',
svg: '/assets/susquehanna_logo.svg',
alt: 'Susquehanna logo',
description:
'Discover Susquehanna, a global quantitative trading firm built on a rigorous, analytical foundation in financial markets.'
},
{
href: 'https://zip.co/au',
svg: '/assets/zip_logo.svg',
alt: 'Zip logo',
description:
"Zip Co Limited is a global 'buy now pay later' financial technology company with operations in Australia, New Zealand and the USA."
},
{
href: 'https://www.canva.com/en_au/',
svg: '/assets/canva_logo.svg',
alt: 'Canva logo',
description:
'Canva is a free-to-use online graphic design tool. Use it to create social media posts, presentations, posters, videos, logos and more.'
}
];