————————————————————————-
COFFEE & WARM DRINKS & SWEETHEARTS
const ESPRESSO = 2.3;
const EXTRASHOT = 0.7;
const MILK_PART = 0.25;
const OATMILK = 0.5;
const SYRUP = 0.5
const WATER = 0;
const ICE = 0;
const SPECIALCOFFEE = 0.5;
const TEA = 2.5;
const FRESHTEA = 0.5;
const WHIPPED CREAM = 0.5;
Coffees: [
{product: ‘Espresso’, price: ESPRESSO},
{product: ‘Double Espresso’, price: ESPRESSO + EXTRASHOT},
{product: ‘Cappuccino’, price: ESPRESSO + 2*MILK_PART},
{product: ‘Double Cappuccino’, price: ESPRESSO + EXTRASHOT + 4*MILK_PART},
{product: ‘Latte macchiato’, price: 4*MILK_PART + ESPRESSO},
{product: ‘Latte’, price: ESPRESSO + 4*MILK_PART},
{product: ‘Espresso macchiato’, price: ESPRESSO + MILK_PART},
{product: ‘Cortado’, price: ESPRESSO + MILK_PART},
{product: ‘Flat white’, price: ESPRESSO + EXTRASHOT + MILK_PART},
{product: ‘Long black’, price: WATER + ESPRESSO},
{product: ‘Long black double’, price: WATER + ESPRESSO + EXTRASHOT},
{product: ‘Iced Coffee’, price: ICE + ESPRESSO + EXTRASHOT},
{product: ‘Iced Latte’, price: ICE + ESPRESSO + EXTRASHOT + 4*MILK_PART},
],
Warmdrinks: [
{product: ‘Tea’, price: TEA},
{product: ‘Fresh mint tea’, price: TEA + FRESHTEA},
{product: ‘Fresh ginger tea’, price: TEA + FRESHTEA},
{product: ‘Hot chocolate’, price: 2.75},
],
————————————————————————-
BREAKFAST & LUNCH & ALLDAY
Breakfast: [
{product: ‘Croissant’, price: 2},
{product: ‘Slice of bread with ham/cheese/jam’, price: 4.5},
],
Daily:
[
{item: ‘Ask for the daily sandwich and salad’, price: 6},
]
Sandwich:
[
{item: ‘Mature cheese, lettuce, pickle’, price: 4.5},
{item: ‘Old cheese, lettuce, pickle ‘, price: 4.5},
{item: ‘Serrano ham, lettuce’, price: 4.5},
{item: ‘Gammon ham, lettuce’, price: 4.5},
{item: ‘Serrano ham, cheese, lettuce’, price: 5.5},
{item: ‘Gammon ham, cheese, lettuce’, price: 5.5},
{item: ‘Humus, lettuce, ‘, price: 4.5},
],
Salads:
[
{item: ‘Egg, tomato, cucumber, pickle, lettuce’, price: 8},
{item: ‘Fennel, hummus, lettuce, pomegranate seeds, hazelnuts‘, price: 8},
],
// Extra topping serrano ham, price: 1
// If small salad, then price: *0.5
// Salads are served with toasted sourdough bread and butter
Grilled cheese sandwich:
[
{item: ‘Cheese, ham’, price: 6},
{item: ‘Cheese, ham, crispy chili’, price: 6.5},
{item: ‘Cheese, kimchi’, price: 6},
],
// Cheese: old, mature or vegan
// Ham: Serano or Gammonold
// If an allergy, then let us know
————————————————————————-
————————————————————————-