2026-01-19 11:03:08 +00:00
|
|
|
|
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';
|
2026-01-19 11:03:08 +00:00
|
|
|
|
import ClientDownloads from '../components/ClientDownloads';
|
|
|
|
|
|
|
2026-03-26 06:55:12 +00:00
|
|
|
|
const { Content } = Layout;
|
|
|
|
|
|
const { Title, Paragraph } = Typography;
|
2026-01-19 11:03:08 +00:00
|
|
|
|
|
2026-03-26 06:55:12 +00:00
|
|
|
|
const ClientDownloadPage = () => {
|
2026-01-19 11:03:08 +00:00
|
|
|
|
return (
|
2026-03-26 06:55:12 +00:00
|
|
|
|
<div className="download-page-modern" style={{ maxWidth: 1000, margin: '0 auto', padding: '24px 0' }}>
|
|
|
|
|
|
<Card bordered={false} style={{ borderRadius: 16, boxShadow: '0 4px 20px rgba(0,0,0,0.05)' }}>
|
|
|
|
|
|
<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>
|
2026-01-19 11:03:08 +00:00
|
|
|
|
</div>
|
2026-03-26 06:55:12 +00:00
|
|
|
|
|
|
|
|
|
|
<Divider />
|
|
|
|
|
|
|
|
|
|
|
|
<div style={{ padding: '0 24px 40px' }}>
|
|
|
|
|
|
<ClientDownloads />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
2026-01-19 11:03:08 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export default ClientDownloadPage;
|