feat: add a link to blecon.de

This commit is contained in:
2026-04-02 18:22:44 +02:00
parent 924af6e200
commit 7d4c8e6cb1
6 changed files with 40 additions and 15 deletions

7
src/link-utils.ts Normal file
View File

@@ -0,0 +1,7 @@
export function getRel(
external: boolean | "me" | null | undefined,
): string | undefined {
return external
? "external nofollow noreferrer".concat(external === "me" ? " me" : "")
: undefined;
}