Base app in working condition

This commit is contained in:
Josh Patra
2025-04-18 22:04:58 -04:00
parent bb9680f221
commit 80e0fe38cb
14 changed files with 597 additions and 40 deletions

10
tailwind.config.cjs Normal file
View File

@@ -0,0 +1,10 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,svelte,ts,js}'],
theme: {
extend: {
// put your custom colors, spacing, etc. here
}
},
plugins: []
};