writed project pages content

This commit is contained in:
2026-04-16 14:39:14 +02:00
parent 3a79088cce
commit fc2b481bd4
18 changed files with 104 additions and 83 deletions
+1 -1
View File
@@ -38,5 +38,5 @@ export function getAllProjects(): Project[] {
return getProjectSlugs()
.map((slug) => getProjectBySlug(slug))
.filter((project): project is Project => project !== null)
.sort((a, b) => b.priority - a.priority);
.sort((a, b) => a.priority - b.priority);
}