feat(docs): update computer fundamentals content and demos

- Refactor frontend framework demo descriptions for clarity
- Remove interactive features from triad and field map demos
- Add new computer organization and DSL documentation links
- Split type systems and compilers into separate pages
- Enhance power-on-to-web article with relay race analogy
- Add new interactive demos for type systems and compilation
- Improve visual presentation of boot process and hardware flow
- Introduce new Vibe Coding flow demo component
This commit is contained in:
sanbuphy
2026-02-25 01:38:27 +08:00
parent 3af119a598
commit f44c842fe7
41 changed files with 7721 additions and 1290 deletions
+14 -2
View File
@@ -585,6 +585,10 @@ export default defineConfig({
text: '从晶体管到 CPU',
link: '/zh-cn/appendix/1-computer-fundamentals/transistor-to-cpu'
},
{
text: '计算机组成原理',
link: '/zh-cn/appendix/1-computer-fundamentals/computer-organization'
},
{
text: '操作系统(进程 / 内存 / 文件系统)',
link: '/zh-cn/appendix/1-computer-fundamentals/operating-systems'
@@ -610,8 +614,12 @@ export default defineConfig({
link: '/zh-cn/appendix/1-computer-fundamentals/programming-languages'
},
{
text: '类型系统与编译原理入门',
link: '/zh-cn/appendix/1-computer-fundamentals/type-systems-compilers'
text: '类型系统入门',
link: '/zh-cn/appendix/1-computer-fundamentals/type-systems'
},
{
text: '编译原理入门',
link: '/zh-cn/appendix/1-computer-fundamentals/compilers'
}
]
},
@@ -798,6 +806,10 @@ export default defineConfig({
{
text: '后端分层架构',
link: '/zh-cn/appendix/4-server-and-backend/backend-layered-architecture'
},
{
text: '领域特定语言(DSL',
link: '/zh-cn/appendix/4-server-and-backend/domain-specific-languages'
}
]
},