feat: static pages
This commit is contained in:
parent
96bff400e8
commit
5f43e417d1
34 changed files with 409 additions and 1567 deletions
|
@ -32,7 +32,7 @@ const fetchAlbumReleases = async () => {
|
|||
})
|
||||
.sort((a, b) => a["timestamp"] - b["timestamp"]);
|
||||
|
||||
const upcoming = all.filter((album) => album["release_timestamp"] > today);
|
||||
const upcoming = all.filter((album) => album["release_timestamp"] > today && album['total_plays'] === 0);
|
||||
|
||||
return { all, upcoming };
|
||||
};
|
||||
|
|
Reference in a new issue