index.jsx 853 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9
import { useIntl } from "umi";
import { GithubOutlined } from "@ant-design/icons";
import { DefaultFooter } from "@ant-design/pro-layout";

const Footer = () => {
  const intl = useIntl();
  const currentYear = new Date().getFullYear();
  return (
    <DefaultFooter
wuhao's avatar
wuhao committed
10
      copyright={`${currentYear} 江苏南高智能装备创新中心出品`}
wuhao's avatar
wuhao committed
11
      links={[
krysent's avatar
krysent committed
12 13 14 15
        {
          key: "download",
          title: "插件下载",
          blankTarget: true,
krysent's avatar
krysent committed
16
          href: '/staticfile/download/CLodop_Setup_for_Win32NT.exe',
krysent's avatar
krysent committed
17
        },
krysent's avatar
krysent committed
18 19 20 21 22 23 24 25 26 27
        // {
        //   key: "github",
        //   title: <GithubOutlined />,
        //   blankTarget: true,
        // },
        // {
        //   key: "Designed By Wuhao",
        //   title: "Designed By Wuhao",
        //   blankTarget: true,
        // },
wuhao's avatar
wuhao committed
28 29 30 31 32 33
      ]}
    />
  );
};

export default Footer;