first commit

This commit is contained in:
2025-10-13 17:37:10 +09:00
commit 9cfc08f3d1
23 changed files with 6140 additions and 0 deletions

11
tailwind.config.js Normal file
View File

@@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
plugins: [
// Note: Tailwind v4 has built-in support for forms and typography
// These plugins are kept for compatibility
],
}