forked from cdinu/ucl-lunch-pals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheateries.ts
42 lines (41 loc) · 945 Bytes
/
eateries.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
export type Eatery = {
id: number;
name: string;
tags: string[];
image?: string;
type: 'Casual' | 'Fast Food' | 'BYO';
zone: number;
};
export const eateries: Eatery[] = [
{
id: 4001,
name: 'Arret A Manger',
tags: ['Desserts', 'Salads', 'Fast Food'],
image: '/pret.png',
type: 'Casual',
zone: 0,
},
{
id: 4002,
name: 'Falafel Things',
tags: ['Middle Eastern', 'Halal', 'Fast Food'],
type: 'Fast Food',
image: '/falafel.png',
zone: 0,
},
{
id: 4003,
name: 'NEON',
tags: ['Healthy', 'Salads', 'Fast Food'],
zone: 0,
type: 'Casual',
image: 'https://leon.co/assets/images/logos/leon-black-square.svg',
},
{
id: 3,
name: 'Bidborough Ground Floor Kitchen',
tags: ['Bring Your Own'],
type: 'BYO',
zone: 0,
},
];