We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ce6743 commit 1fed485Copy full SHA for 1fed485
pages/index.js
@@ -7,7 +7,7 @@ export default function Home({ results }) {
7
<Seo title="Home" />
8
{results?.map((movie) => (
9
<div className="movie" key={movie.id}>
10
- <img src={`https://image.tmdb.org/t/p/w500/${movie.poster_path}`} />
+ <img src={`https://image.tmdb.org/t/p/w500${movie.poster_path}`} />
11
<h4>{movie.original_title}</h4>
12
</div>
13
))}
@@ -18,6 +18,9 @@ export default function Home({ results }) {
18
padding: 20px;
19
gap: 20px;
20
}
21
+ .movie {
22
+ cursor: pointer;
23
+ }
24
.movie img {
25
max-width: 100%;
26
border-radius: 12px;
0 commit comments