-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
export interface Discover { | ||
readonly title: string | ||
readonly description: string | ||
} | ||
|
||
export const discovers: Discover[] = [ | ||
{ | ||
title: 'Where to eat?', | ||
description: `Check out the best places to eat in Barcelona!`, | ||
}, | ||
{ | ||
title: 'What to visit', | ||
description: `Coses com el park guell, la sagrada familia, la rambla, el camp nou, etc`, | ||
}, | ||
{ | ||
title: 'Tips to move around the city', | ||
description: `Movides de la Tmovilitat que no conec perque vaig a tot arreu en moto`, | ||
}, | ||
{ | ||
title: 'Magical cities nearby', | ||
description: `Coses com Sitges, Tarragona, Girona, etc`, | ||
}, | ||
{ | ||
title: 'Where to stay?', | ||
description: `Podem buscar hostels :)`, | ||
}, | ||
{ | ||
title: 'What to do on the cheap/for free', | ||
description: `GL jajaja es broma hem de posar coses chules`, | ||
}, | ||
{ | ||
title: 'Where to leave your baggage', | ||
description: `We can have your baggage in a safe place during the event but if you want to store them before or after the event, you can do it in the lockers: \n - [Locker in the city](https://lockerinthecity.com/)`, | ||
}, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters