-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
35 lines (34 loc) · 1.01 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
const movies = [
{
title: "Exemple 1",
description: "Description",
rating: 53, // Note TMDb
ageRating: "TP", // Âge minimum
thumbnail: "https://www.themoviedb.org/t/p/w600_and_h900_bestv2/exemple.jpg", // Image depuis TMDb
videoUrl: "https://link-to-video.com"
}
];
const series = [
{
title: "Serie exemple 1",
description: "Description",
rating: 78,
ageRating: "TV-14",
thumbnail: "https://www.themoviedb.org/t/p/w600_and_h900_bestv2/exemple.jpg",
seasons: [
{
seasonNumber: 9,
episodes: [
{
title: "Episod 1",
videoUrl: "https://link-to-video.com"
},
{
title: "Episod 2",
videoUrl: "https://link-to-video.com"
}
]
}
]
}
];