imetting/frontend/src/pages/ClientDownloadPage.jsx

32 lines
1.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import React from 'react';
import { Layout, Typography, Card, Space, Divider } from 'antd';
import { CloudOutlined, FireOutlined } from '@ant-design/icons';
import ClientDownloads from '../components/ClientDownloads';
const { Content } = Layout;
const { Title, Paragraph } = Typography;
const ClientDownloadPage = () => {
return (
<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)' }}>
<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>
<Divider />
<div style={{ padding: '0 24px 40px' }}>
<ClientDownloads />
</div>
</Card>
</div>
);
};
export default ClientDownloadPage;