17 lines
526 B
React
17 lines
526 B
React
|
|
import { Card } from 'antd'
|
||
|
|
import { BookOutlined } from '@ant-design/icons'
|
||
|
|
|
||
|
|
function KnowledgeBase() {
|
||
|
|
return (
|
||
|
|
<Card style={{ borderRadius: 16 }}>
|
||
|
|
<div style={{ textAlign: 'center', padding: '48px 0', color: '#999' }}>
|
||
|
|
<BookOutlined style={{ fontSize: 48, marginBottom: 16 }} />
|
||
|
|
<h3 style={{ color: '#666' }}>知识库</h3>
|
||
|
|
<p>模块 C · Phase 3 实施</p>
|
||
|
|
<small>往期报题单 / 文稿 / 军报语义检索</small>
|
||
|
|
</div>
|
||
|
|
</Card>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default KnowledgeBase
|