blob: 162587e1201c7a3d2c2aa6153ac5497a9ab42a50 [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 (
BirdNETM632c0612025-05-27 17:41:40 +08007 // <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 <></>
86133aaa3f5d2025-04-20 21:33:29 +080033 );
34};
35
36export default Footer;