graph TD
subgraph Core [核心入口]
Home[首页 Home]:::core
Docs[硬件文档中心 Documentation]:::core
end
subgraph ProductModule [产品板块]
ProductList[产品库 Products]:::product
ProductDetail[产品详情页 Detail]:::product
ProductList --> ProductDetail
end
subgraph ProjectModule [开源项目板块]
ProjectList[开源项目库 Projects]:::project
ProjectDetail[项目详情页 Detail]:::project
ProjectList --> ProjectDetail
end
subgraph ServiceModule [服务板块]
ServiceMfg[供应链量产服务]:::service
ServiceCustom[硬件定制开发]:::service
ServiceDetail[服务详情页]:::service
ServiceMfg --> ServiceDetail
ServiceCustom --> ServiceDetail
end
Home --> ProductList
Home --> ProjectList
Home --> ServiceMfg
Home --> ServiceCustom
Home --> Docs
ProductDetail -.-> Docs
ProjectDetail -.-> Docs
classDef core fill:#fff7ed,stroke:#ff6b00,stroke-width:2px;
classDef product fill:#f0f9ff,stroke:#0ea5e9,stroke-width:2px;
classDef project fill:#f0fdf4,stroke:#22c55e,stroke-width:2px;
classDef service fill:#f5f3ff,stroke:#8b5cf6,stroke-width:2px;