首页概览跳转优化

This commit is contained in:
禺狨
2023-03-21 10:23:54 +08:00
parent 7b08122f81
commit 5f45a8badf
3 changed files with 19 additions and 29 deletions

View File

@@ -1,5 +1,6 @@
import React from "react";
import { Layout } from "antd";
import { Link } from "react-router-dom";
export const Footer: React.FC = () => {
return (
@@ -12,10 +13,13 @@ export const Footer: React.FC = () => {
textAlign: "center",
}}
>
<i
style={{ fontSize: 30, color: "#cccccc" }}
className="iconfont icon-waterprint"
></i>
<Link to="https://www.playedu.xyz/">
<i
style={{ fontSize: 30, color: "#cccccc" }}
className="iconfont icon-waterprint footer-icon"
onClick={() => {}}
></i>
</Link>
</Layout.Footer>
);
};