-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.php
More file actions
71 lines (67 loc) · 2.79 KB
/
data.php
File metadata and controls
71 lines (67 loc) · 2.79 KB
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
<?php
declare(strict_types=1);
$filters = [
[
'name' => 'Oreti',
'variety' => 'SL28',
'process' => 'Washed',
'altitude' => '1585 m.a.s.l',
'harvested' => 'January 2021',
'testNotes' => 'Juicy and sweet with floral notes of strawberry lemonade and peach',
'price' => 399,
'image' => 'images\oreti.jpeg',
'alt' => 'An image with a lot of objects. A ceramic hen and rhino. Two glass bowls with coffee in and a glass jug with some coffee in',
],
[
'name' => 'Montero Family',
'variety' => 'Catuai',
'process' => 'Honey',
'altitude' => '1900 m.a.s.l.',
'harvested' => 'March 2021',
'testNotes' => 'Structured and creamy with notes of chocolate biscuit and ripe plum',
'price' => 259,
'image' => 'images\montero.png',
'alt' => 'An image with a lot of objects. A biscuit chocolate. An eaten apple. A pink plastic hand. Some objects in white proslin',
],
[
'name' => 'Gotiti',
'variety' => 'Heirloom',
'process' => 'Natural',
'altitude' => '2000 m.a.s.l.',
'harvested' => 'December 2020',
'testNotes' => 'Jammy and elegant with notes of elderflower and red currant lemonade',
'price' => 259,
'image' => 'images\gotiti.jpeg',
'alt' => 'An image with a lot of objects. A glass with red liquid and flowers in. A glass with flames on. A cone, purple plastic grape and a yellow lemon',
],
[
'name' => 'Bekele Legie',
'variety' => 'Dega & Wolisho',
'process' => 'Natural',
'altitude' => '2000 m.a.s.l.',
'harvested' => 'December 2020',
'testNotes' => 'Juicy and sweet with notes of ripe grapes and Earl Grey tea',
'price' => 259,
'image' => 'images\bekeleLegie.png',
'alt' => 'An image with a lot of objects. A wooden horse. Purple grapes, purple plums, some without skin. A red shoelace. Purple and pink flowers. A sea lion in porcelain',
],
[
'name' => 'Sandra Milena Mora',
'variety' => 'Tabi',
'process' => 'Washed',
'altitude' => '1700 m.a.s.l.',
'harvested' => 'January 2021',
'testNotes' => 'Layered and sweet with notes of red apple and milk chocolate',
'price' => 399,
'image' => 'images\sandraMilenaMora.jpeg',
'alt' => 'An image with a lot of objects. A brown light. A back of a dog from the side. A piece of apple. Four pieces of chocolate in the form of three seashells and a fish',
],
];
$reviews = [
'Mmmm this is good!',
'Reminds me about summer.',
'Just want more, it\'s so good!',
'I want all my cups of coffee to taste like this',
'Could have tasted a little more i think, will not have this again.',
'It\'s looks like tea.',
];