Files
tashow-manager/src/components/Footer/index.tsx
2025-10-16 16:32:59 +08:00

37 lines
791 B
TypeScript

import { GithubOutlined } from '@ant-design/icons';
import { DefaultFooter } from '@ant-design/pro-components';
import React from 'react';
const Footer: React.FC = () => {
return (
<DefaultFooter
style={{
background: 'none',
}}
copyright="20250923"
links={[
{
key: 'by',
title: '百业到家',
href: '/welcome',
blankTarget: true,
},
{
key: 'github',
title: <GithubOutlined />,
href: 'https://github.com/ant-design/ant-design-pro',
blankTarget: true,
},
{
key: 'bydj',
title: '宠悦',
href: 'https://ant.design',
blankTarget: true,
},
]}
/>
);
};
export default Footer;