wip(desktop): new layout work

This commit is contained in:
Adam 2025-11-18 11:00:27 -06:00 committed by opencode
commit fc5fc2c570
24 changed files with 634 additions and 423 deletions

View file

@ -0,0 +1,7 @@
export function base64Encode(value: string) {
return btoa(value).replace(/\+/g, "-").replace(/\//g, "_").replace(/=/g, "")
}
export function base64Decode(value: string) {
return atob(value.replace(/-/g, "+").replace(/_/g, "/"))
}

View file

@ -1,2 +1,3 @@
export * from "./path"
export * from "./dom"
export * from "./encode"