Initial commit.

This commit is contained in:
Alfred Jophy 2026-02-22 11:42:13 +05:30
commit cbe09fc194
21 changed files with 847 additions and 0 deletions

16
.prettierrc Normal file
View file

@ -0,0 +1,16 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
],
"tailwindStylesheet": "./src/routes/layout.css"
}