-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovie.js
49 lines (48 loc) · 1.61 KB
/
movie.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
const movies = [
{
src: "https://images-na.ssl-images-amazon.com/images/M/MV5BMTQ5ODE4MTY2NV5BMl5BanBnXkFtZTgwMzM2NzEzMDI@._V1_UY209_CR0,0,140,209_AL_.jpg",
alt: "Collateral Beauty (2016) Poster",
title: "Collateral Beauty",
year: 2016,
director: "David Frankel",
genre: ["Drama", "Romance"],
rating: "7.0",
},
{
src: "https://images-na.ssl-images-amazon.com/images/M/MV5BMjAwNDA1NjcwN15BMl5BanBnXkFtZTgwMDY0MDA2MDI@._V1_UY209_CR0,0,140,209_AL_.jpg",
alt: "A Kind of Murder (2016) Poster",
title: "A Kind of Murder",
year: 2016,
director: "Andy Goddard",
genre: ["Crime", "Drama", "Thriller"],
rating: "5.3",
},
{
src: "https://images-na.ssl-images-amazon.com/images/M/MV5BOTg0Nzc1NjA0MV5BMl5BanBnXkFtZTgwNTcyNDQ0MDI@._V1_UX140_C R0,0,140,209_AL_.jpg",
alt: "Fences (2016) Poster",
title: "Fences",
year: 2016,
director: "Denzel Washington",
genre: ["Drama"],
rating: "7.2",
},
{
src: "https://images-na.ssl-images-amazon.com/images/M/MV5BMTYxMjk0NDg4Ml5BMl5BanBnXkFtZTgwODcyNjA5OTE@._V1_UY209_CR0,0,140,209_AL_.jpg",
alt: "Manchester by the Sea (2016) Poster",
title: "Manchester by the Sea",
year: 2016,
director: "Kenneth Lonergan",
genre: ["Drama"],
rating: "7.9",
},
{
src: "https://images-na.ssl-images-amazon.com/images/M/MV5BMjI4MzU5NTExNF5BMl5BanBnXkFtZTgwNzY1MTEwMDI@._V1_UY209_CR0,0,140,209_AL_.jpg",
alt: "Moana (2016) Poster",
title: "Moana",
year: 2016,
director: "Ron Clements",
genre: ["Animation", "Adventure", "Comedy"],
rating: "7.6",
},
];
export default movies;