forked from
tranquil.farm/tranquil-pds
Our Personal Data Server from scratch!
1<script lang="ts" module>
2 const EXAMPLE_HANDLES = [
3 "nel.pet",
4 "lewis.moe",
5 "llaama.bsky.social",
6 "debugman.wizardry.systems",
7 "nonbinary.computer",
8 "mary.my.id",
9 "olaren.dev",
10 ] as const;
11
12 export function getRandomHandle(): string {
13 return EXAMPLE_HANDLES[Math.floor(Math.random() * EXAMPLE_HANDLES.length)];
14 }
15</script>
16
17<script lang="ts">
18 let handle = $state(getRandomHandle());
19</script>
20
21@{handle}