refactor: convert SPA to multi-page architecture

- Add scene_onboarding.html, scene_dashboard.html, scene_settings.html
- Add onboarding.js, dashboard.js, settings.js scripts
- Update vite.config.js for multi-page build
- Navigation via window.location.href between pages
- Bottom nav bar on dashboard only
This commit is contained in:
2026-05-19 14:44:49 +09:00
parent 3735240eed
commit c58b5ab24d
49 changed files with 7574 additions and 5 deletions

6
postcss.config.js Normal file
View File

@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}