-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathevents-data.ts
More file actions
59 lines (58 loc) · 1000 Bytes
/
events-data.ts
File metadata and controls
59 lines (58 loc) · 1000 Bytes
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
export interface EventMapItem {
id: string
city: string
date: string
href: string
lon: number
lat: number
}
export const EVENTS: EventMapItem[] = [
{
id: "singapore",
city: "Singapore",
date: "Apr 14-15",
href: "/day/2026/singapore",
lon: 103.8198,
lat: 1.3521,
},
{
id: "nyc",
city: "NYC",
date: "May 13-14",
href: "/day/2026/nyc",
lon: -74.006,
lat: 40.7128,
},
{
id: "amsterdam",
city: "Amsterdam",
date: "Jun 9-10",
href: "/day/2026/amsterdam",
lon: 4.9041,
lat: 52.3676,
},
{
id: "bengaluru",
city: "Bengaluru",
date: "Aug 19-20",
href: "/day/2026/bengaluru",
lon: 77.5946,
lat: 12.9716,
},
{
id: "melbourne",
city: "Melbourne",
date: "Oct 28-29",
href: "/day/2026/melbourne",
lon: 144.9631,
lat: -37.8136,
},
{
id: "paris",
city: "Paris",
date: "Dec 1-3",
href: "/day/2026/paris",
lon: 2.3522,
lat: 48.8566,
},
]