feat: 初始化天选公司 MVP

- 首页、信息录入页、结果页完整流程
- 命理分析规则引擎(五行计算)
- 公司类型与岗位方向匹配
- 响应式东方命理风格 UI

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jowe
2026-03-23 23:47:44 +08:00
parent fe531af56c
commit 9dfa2a9532
23 changed files with 3655 additions and 2 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "tianxuan-company",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.0",
"typescript": "^5.9.2",
"vite": "^7.1.3"
}
}