-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
157 lines (153 loc) · 4.2 KB
/
data.js
File metadata and controls
157 lines (153 loc) · 4.2 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
const books = [
{
title: "The Silent Wave",
author: "66c88449b371cdb5a5d161f0",
description: "A thrilling mystery novel set in a coastal town.",
price: 12,
cover: "soft cover",
},
{
title: "The Midnight Tide",
author: "66c88449b371cdb5a5d161f0",
description: "A captivating sequel to 'The Silent Wave' with new secrets.",
price: 14,
cover: "hard cover",
},
{
title: "Echoes from the Abyss",
author: "66c88449b371cdb5a5d161f0",
description: "A gripping conclusion to the trilogy with shocking revelations.",
price: 15,
cover: "soft cover",
},
{
title: "Echoes of Eternity",
author: "66c88462b371cdb5a5d161f2",
description: "A science fiction journey across time and space.",
price: 15,
cover: "soft cover",
},
{
title: "Fragments of Time",
author: "66c88462b371cdb5a5d161f2",
description: "A continuation of 'Echoes of Eternity' exploring alternate realities.",
price: 16,
cover: "hard cover",
},
{
title: "The Temporal Shift",
author: "66c88462b371cdb5a5d161f2",
description: "An epic finale that intertwines timelines and dimensions.",
price: 18,
cover: "soft cover",
},
{
title: "Whispers in the Dark",
author: "66c88475b371cdb5a5d161f4",
description: "A chilling horror story that will keep you on edge.",
price: 18,
cover: "hard cover",
},
{
title: "Shadows of the Past",
author: "66c88475b371cdb5a5d161f4",
description: "A prequel to 'Whispers in the Dark' that delves into hidden horrors.",
price: 17,
cover: "soft cover",
},
{
title: "The Haunting Echo",
author: "66c88475b371cdb5a5d161f4",
description: "A spine-tingling finale to the series with a supernatural twist.",
price: 19,
cover: "hard cover",
},
{
title: "The Forgotten Path",
author: "66c88486b371cdb5a5d161f6",
description: "An inspiring story about self-discovery and resilience.",
price: 11,
cover: "soft cover",
},
{
title: "The Journey Within",
author: "66c88486b371cdb5a5d161f6",
description: "A reflective novel exploring inner growth and personal challenges.",
price: 13,
cover: "hard cover",
},
{
title: "Winds of Solitude",
author: "66c88486b371cdb5a5d161f6",
description: "A poetic exploration of solitude and personal strength.",
price: 12,
cover: "soft cover",
},
{
title: "The Quantum Paradox",
author: "66c8849fb371cdb5a5d161f8",
description: "A mind-bending adventure through quantum realities.",
price: 17,
cover: "hard cover",
},
{
title: "Dimensions Unseen",
author: "66c8849fb371cdb5a5d161f8",
description: "A follow-up to 'The Quantum Paradox,' diving deeper into multiverse theories.",
price: 18,
cover: "soft cover",
},
{
title: "The Infinite Loop",
author: "66c8849fb371cdb5a5d161f8",
description: "A thrilling conclusion exploring the limits of consciousness and time.",
price: 19,
cover: "hard cover",
}
];
const authors = [
{
firstName: "Evelyn",
lastName: "Harper",
nationality: "British",
},
{
firstName: "Carlos",
lastName: "Martinez",
nationality: "Spanish",
},
{
firstName: "Aiko",
lastName: "Tanaka",
nationality: "Japanese",
},
{
firstName: "Luca",
lastName: "Rossi",
nationality: "Italian",
},
{
firstName: "Nina",
lastName: "Petrova",
nationality: "Russian",
},
{
firstName: "Ahmed",
lastName: "El-Sayed",
nationality: "Egyptian",
},
{
firstName: "Sophia",
lastName: "Müller",
nationality: "German",
},
{
firstName: "Arjun",
lastName: "Patel",
nationality: "Indian",
}
];
module.exports = {
authors,
books,
}