Got the homepage sorted

This commit is contained in:
2025-05-17 22:42:48 -06:00
parent b1cd87f20b
commit d86ae2f16b
49 changed files with 5226 additions and 1878 deletions

17
tsconfig.json Normal file
View File

@ -0,0 +1,17 @@
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"include": [
".astro/types.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.astro"
],
"exclude": [
"node_modules",
"dist"
]
}