feat: static pages

This commit is contained in:
Cory Dransfeldt 2024-11-11 08:59:00 -08:00
parent 96bff400e8
commit 5f43e417d1
No known key found for this signature in database
34 changed files with 409 additions and 1567 deletions

View file

@ -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 };
};