-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
47 lines (45 loc) · 1.37 KB
/
data.js
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
const testimonials = {
cottageTalk: [
{
id: 1,
author: "Max Mustermann",
date: "2023-04-10",
comment: "Heute hat sich das Wetter super geeignet zu Grillen!"
},
{
id: 2,
author: "Anonym Guest",
date: "2023-04-12",
comment: "Ab und zu kann man Eichhörnchen im Garten beobachten :)"
}
],
feedback: [
{
id: 1,
author: "Hans Peter",
date: "2023-04-15",
comment: "Top: Der Empfang beim einchecken war ausgezeichnet! Tip: Weiter so! :)"
}
],
recommendations: [
{
id: 1,
author: "Anonym Guest",
date: "2023-04-20",
comment: "Das Burger Restaurant am Kreisverkehr in Heiligenhafen ist eine absolute Empfehlung!"
},
{
id: 2,
author: "Julia Werner",
date: "2023-04-22",
comment: "Die Bar in XY war nicht so toll, trotz der guten google bewertung, aber Bar XY 2 Straßen weiter ist noch nicht so bekannt, dafür sehr zu empfehlen!"
},
{
id: 3,
author: "Klaus Klein",
date: "2023-04-23",
comment: "Der Hundestrand in der nähe ist ein Muss für jeden Gast (mit Hund)!"
}
]
};
export default testimonials;