imetting/frontend/src/pages/ClientDownloadPage.jsx

32 lines
1.1 KiB
React
Raw Normal View History

import React from 'react';
2026-03-26 06:55:12 +00:00
import { Layout, Typography, Card, Space, Divider } from 'antd';
import { CloudOutlined, FireOutlined } from '@ant-design/icons';
import ClientDownloads from '../components/ClientDownloads';
2026-03-26 06:55:12 +00:00
const { Content } = Layout;
const { Title, Paragraph } = Typography;
2026-03-26 06:55:12 +00:00
const ClientDownloadPage = () => {
return (
2026-03-26 06:55:12 +00:00
<div className="download-page-modern" style={{ maxWidth: 1000, margin: '0 auto', padding: '24px 0' }}>
<Card variant="borderless" style={{ borderRadius: 16, boxShadow: '0 4px 20px rgba(0,0,0,0.05)' }}>
2026-03-26 06:55:12 +00:00
<div style={{ textAlign: 'center', padding: '40px 0' }}>
<FireOutlined style={{ fontSize: 48, color: '#1677ff', marginBottom: 24 }} />
<Title level={2}>随时随地开启智能会议</Title>
<Paragraph type="secondary" style={{ fontSize: 16 }}>
下载 iMeeting 客户端享受更稳定更高效的会议转录与协作体验
</Paragraph>
</div>
2026-03-26 06:55:12 +00:00
<Divider />
<div style={{ padding: '0 24px 40px' }}>
<ClientDownloads />
</div>
</Card>
</div>
);
};
export default ClientDownloadPage;