Initial commit - but way too late.
Some checks failed
ci / site (push) Has been cancelled

This commit is contained in:
2026-02-10 00:22:18 -05:00
commit af112a713c
173 changed files with 27667 additions and 0 deletions

16
site/prettier.config.cjs Normal file
View File

@@ -0,0 +1,16 @@
/** @type {import("prettier").Config} */
module.exports = {
semi: true,
singleQuote: false,
printWidth: 100,
trailingComma: "all",
plugins: ["prettier-plugin-astro"],
overrides: [
{
files: "*.astro",
options: {
parser: "astro",
},
},
],
};