// Food truck 🚚
// There will be a food truck on the street in front off the building (Via Lorenteggio)

new FoodTruck ({ "El Sabrosito Food Truck", {
tags: "specialità sudamericane, hamburger, carne",
link: "🌎 El Sabrosito Food Truck"
}});

// Then, these are the places near the venue we recommend

new Café ({ "Sunny Caffè", {
tags: "tavola calda, tavola fredda",
address: "Via Val Bavona, 5, 20147 Milano MI",
map: "🌎 Sunny Caffè"
}});

new Café ({ "Esselunga, BAR ATLANTIC", {
tags: "tavola calda, tavola fredda",
address: "Via Lorenteggio, 219, 20147 Milano MI",
map: "🌎 Esselunga di via Lorenteggio"
}});

new Café ({ "Dolce & Salato", {
tags: "tavola calda, tavola fredda",
address: "Via Anna Kuliscioff, 2, 20152 Milano MI",
map: "🌎 Dolce & Salato"
}});

new Restaurant ({ "Beato Te Milano", {
tags: "pizza, hamburger, ristorante, gluten-free",
address: "Via Sant'Anatalone, 16, 20147 Milano MI",
map: "🌎 Beato Te Milano"
notes: "solo su prenotazione 👀",
}});

new Restaurant ({ "Mensa Sana", {
tags: "vegan",
address: "Via Sant'Anatalone, 1, 20147 Milano MI",
map: "🌎 Mensa Sana"
}});

new FastFood ({ "McDonald's Lorenteggio", {
tags: "hamburger, french fries",
address: "Via Lorenteggio, 246, 20147 Milano MI",
map: "🌎 McDonald's Lorenteggio"
}});

  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.