This commit is contained in:
metacryst
2026-04-28 20:05:00 -05:00
commit 0d6c7683ff
123 changed files with 20922 additions and 0 deletions

8
components/AppTitle.js Normal file
View File

@@ -0,0 +1,8 @@
function AppTitle(text) {
return h1(text)
.fontFamily("Laandbrau")
.letterSpacing(2, px)
.fontSize(2.3, em)
}
window.AppTitle = AppTitle