feat: add donation view to progress page

This commit is contained in:
mrjvs
2026-08-13 21:26:22 +02:00
parent 92520e5d36
commit 90a6e1bfcc
35 changed files with 407 additions and 87 deletions

View File

@@ -0,0 +1,3 @@
export function slugify(str: string): string {
return str.toLowerCase().replaceAll(/ /g, '-');
}