blob: f204ac29301a5bb9a8dee74abd3561b6acb348b0 [file] [log] [blame]
86133aaa3f5d2025-04-20 21:33:29 +08001import { GithubOutlined } from '@ant-design/icons';
2import { DefaultFooter } from '@ant-design/pro-components';
3import React from 'react';
4
5const Footer: React.FC = () => {
6 return (
7 <DefaultFooter
8 style={{
9 background: 'none',
10 }}
11 links={[
12 {
13 key: 'Ant Design Pro',
14 title: 'Ant Design Pro',
15 href: 'https://pro.ant.design',
16 blankTarget: true,
17 },
18 {
19 key: 'github',
20 title: <GithubOutlined />,
21 href: 'https://github.com/ant-design/ant-design-pro',
22 blankTarget: true,
23 },
24 {
25 key: 'Ant Design',
26 title: 'Ant Design',
27 href: 'https://ant.design',
28 blankTarget: true,
29 },
30 ]}
31 />
32 );
33};
34
35export default Footer;