Updated display name and heads display

This commit is contained in:
2025-09-07 22:51:48 +02:00
parent e0a54114d0
commit fbfd8b8bbc
4 changed files with 14 additions and 6 deletions

View File

@@ -78,3 +78,7 @@ export function romanize(num: number) {
const thousands = Number(digits.join(""))
return "M".repeat(thousands) + roman
}
export function head(val: string, size: number) {
return `https://vzge.me/face/${size}/${val}?no-shadow,cape,ears,overlay`
}