Initial commit

This commit is contained in:
2025-07-19 11:10:28 -07:00
commit 544b5d2b1e
15 changed files with 2242 additions and 0 deletions

6
utils/html.js Normal file
View File

@@ -0,0 +1,6 @@
const html = (strings, ...values) =>
strings
.reduce((result, str, i) => result + str + (values[i] || ""), "")
.trim();
export default html;