refactor: everything to nuxt.js

This commit is contained in:
2026-03-19 14:30:36 -04:00
parent 6e1f58cd8e
commit bb3042014e
159 changed files with 6786 additions and 11198 deletions

7
app/utils/misc.ts Normal file
View File

@@ -0,0 +1,7 @@
export function getNewId(): string {
return [...Array(20)]
.map(() => Math.floor(Math.random() * 16).toString(16))
.join('');
}
export type LoadingTypes = 'loaded' | 'pending' | 'error' | undefined;