joewood / filmharmonic

2 stars 0 forks source link

Style the movie page #3

Open joewood opened 3 years ago

joewood commented 3 years ago
Sophiaew commented 3 years ago

What type of information?

joewood commented 3 years ago

If you check out the movie variable it will show you what data is in it. Type movie?. and it should list everything on it. See this https://github.com/joewood/filmharmonic/blob/main/src/show-movie.tsx#L32

joewood commented 3 years ago

To start with add the Actors

joewood commented 3 years ago

This is the information that can be added: Title: string; Year: string; Rated: string; Released: string; Runtime: string; Genre: string; Director: string; Writer: string; Actors: string; Plot: string; Language: string; Country: string; Awards: string; Poster: string; Ratings: Rating[]; Metascore: string; imdbRating: string; imdbVotes: string; imdbID: string; Type: string; DVD: string; BoxOffice: string; Production: string; Website: string; Response: string;

joewood commented 3 years ago

Some of this information can be hidden at low device sizes

joewood commented 3 years ago

Also see #13