blob: 79fbfe41bfbe33caa7ab7a27e5c69242d08e6fb1 [file] [log] [blame]
ybtda5978b2025-05-31 15:58:05 +08001import React from 'react';
2import { Typography, Button, Empty } from 'antd';
3
4const { Title } = Typography;
5
6const 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
19export default ProfilePage;