Initial design based off original website, some things still to do

This commit is contained in:
2025-08-08 17:48:11 +09:30
parent d38c8fc694
commit ae3c38be17
185 changed files with 6799 additions and 1877 deletions

21
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"files.autoSave": "onFocusChange",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"astro", // Enable .astro
"typescript", // Enable .ts
],
"prettier.documentSelectors": [
"**/*.svg",
"**/*.astro"
],
"css.customData": [
".vscode/tailwind.json"
]
}