-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.js
82 lines (81 loc) · 1.46 KB
/
db.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
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
const db = {
testimonials: [
{ id: 1, author: 'John Doe', text: 'This company is worth every coin!' },
{
id: 2,
author: 'Amanda Doe',
text: 'They really know how to make you happy.',
},
],
concerts: [
{
id: 1,
performer: 'John Doe',
genre: 'Rock',
price: 25,
day: 1,
image: '/img/uploads/1fsd324fsdg.jpg',
},
{
id: 2,
performer: 'Rebekah Parker',
genre: 'R&B',
price: 25,
day: 1,
image: '/img/uploads/2f342s4fsdg.jpg',
},
{
id: 3,
performer: 'Maybell Haley',
genre: 'Pop',
price: 40,
day: 1,
image: '/img/uploads/hdfh42sd213.jpg',
},
],
seats: [
{
id: 1,
day: 1,
seat: 3,
client: 'Amanda Doe',
email: 'amandadoe@example.com',
},
{
id: 2,
day: 1,
seat: 9,
client: 'Curtis Johnson',
email: 'curtisj@example.com',
},
{
id: 3,
day: 1,
seat: 10,
client: 'Felix McManara',
email: 'felxim98@example.com',
},
{
id: 4,
day: 1,
seat: 26,
client: 'Fauna Keithrins',
email: 'mefauna312@example.com',
},
{
id: 5,
day: 2,
seat: 1,
client: 'Felix McManara',
email: 'felxim98@example.com',
},
{
id: 6,
day: 2,
seat: 2,
client: 'Molier Lo Celso',
email: 'moiler.lo.celso@example.com',
},
],
};
module.exports = db;