File size: 689 Bytes
f5071ca |
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 |
const API_KEY = "989a8027930013244e3c2af17088dcac";
const homeRequests = [
{
title: "Comedy",
url: `/discover/movie?api_key=${API_KEY}&with_genres=35`,
media: "movie",
},
{
title: "Action",
url: `/discover/movie?api_key=${API_KEY}&with_genres=28`,
media: "movie",
},
{
title: "Horror",
url: `/discover/movie?api_key=${API_KEY}&with_genres=27`,
media: "movie",
},
{
title: "Adventure TV Shows",
url: `/discover/tv?api_key=${API_KEY}&with_genres=12`,
media: "tv",
},
{
title: "Popular in your Region TV Shows",
url: `/discover/tv?api_key=${API_KEY}®ion=IN`,
media: "tv",
},
];
export default homeRequests;
|