Build minimal demo site

This commit is contained in:
2025-06-05 21:51:33 -06:00
parent 36cf0cfa92
commit cddd4b116c
84 changed files with 2086 additions and 0 deletions

8
fonts/static/woff2.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
# Compress all font files in the current directory using woff2_compress
for font in *.ttf *.otf; do
if [[ -f "$font" ]]; then
woff2_compress "$font"
fi
done