86133 | aaa3f5d | 2025-04-20 21:33:29 +0800 | [diff] [blame] | 1 | import { GithubOutlined } from '@ant-design/icons'; |
| 2 | import { DefaultFooter } from '@ant-design/pro-components'; |
| 3 | import React from 'react'; |
| 4 | |
| 5 | const 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 | |
| 35 | export default Footer; |