ybt | da5978b | 2025-05-31 15:58:05 +0800 | [diff] [blame] | 1 | import React from 'react'; |
2 | import { Typography, Button, Empty } from 'antd'; | ||||
3 | |||||
4 | const { Title } = Typography; | ||||
5 | |||||
6 | const ProfilePage = () => ( | ||||
7 | <div className="space-y-6"> | ||||
8 | <Title level={2}>个人资料</Title> | ||||
9 | |||||
10 | <div className="text-center py-12"> | ||||
11 | <Empty description="用户资料页面正在开发中" /> | ||||
12 | <Button type="primary" className="mt-4"> | ||||
13 | 编辑资料 | ||||
14 | </Button> | ||||
15 | </div> | ||||
16 | </div> | ||||
17 | ); | ||||
18 | |||||
19 | export default ProfilePage; |