feat: add tag filter on homepage

This commit is contained in:
Mathias Schopmans
2024-02-27 16:17:24 +01:00
committed by Mathias Schopmans
parent e42b175ab7
commit 13591b9672
9 changed files with 127 additions and 8 deletions

View File

@@ -36,6 +36,10 @@ export function getReleases(): string[] {
return data.releases;
}
export function getTags(): string[] {
return data.tags;
}
export function getQuadrants(): Quadrant[] {
return config.quadrants;
}