ai_pipeline_web/src/components/Footer/index.tsx

37 lines
896 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="Powered by Ruwei Li"
// links={[
// {
// key: 'AI Pipeline',
// title: 'AI Pipeline',
// href: 'https://pro.ant.design',
// blankTarget: true,
// },
// {
// key: 'github',
// title: <GithubOutlined />,
// href: 'https://github.com/ant-design/ant-design-pro',
// blankTarget: true,
// },
// {
// key: 'AI Pipeline',
// title: 'AI Pipeline',
// href: 'https://ant.design',
// blankTarget: true,
// },
// ]}
/>
);
};
export default Footer;