-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathevent.js
73 lines (72 loc) · 1.87 KB
/
event.js
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
export const EVENT = {
date: '25th October 2024',
title: 'TechMids Conf - Part of Birmingham Tech Week',
venue: 'The ICC',
address: '8 Centenary Sq, B1 2EA',
startTime: '09:00 AM',
endTime: '4:00 PM',
ticketLink: 'https://ti.to/tech-events-birmingham/techmids-october-2024',
onSale: false, //swap to true to embed ticket widget
soldOut: true,
titoId: 'tech-events-birmingham/techmids-october-2024',
CFPLink: "https://forms.gle/V3ZD6GTjkAmj2woq6",
CFPOpen: false,
capacity: 400,
tagline: "",
}
export const sponsorTiers = {
headline: {
name: "Headline Sponsor",
sponsors: [
{
name: "Goldman Sachs",
image: "/sponsors/goldman-sachs.png",
url: "https://www.goldmansachs.com/"
}
]
},
event: {
name: "Valued Sponsors",
sponsors: [
{
name: "Flutter International",
image: "/sponsors/Flutter.png",
},
{
name: "BT",
image: "/sponsors/BT.png",
url: "https://www.bt.com/"
}
]
},
silver: {
name: "Silver Sponsors",
sponsors: [
// {
// name: "Infobip",
// image: "/sponsors/infobip.png",
// url: "https://www.infobip.com/"
// }
],
},
bronze: {
name: "Bronze Sponsors",
sponsors: [
// {
// name: "StackWizards",
// image: "/sponsors/stackwizards.png",
// url: "https://stackwizards.com/"
// }
]
},
// lanyard: {
// name: "Lanyard Sponsor",
// sponsors: [
// ]
// },
// badge: {
// name: "Badge Sponsor",
// sponsors: [
// ]
// }
}