首页底部

This commit is contained in:
禺狨
2023-03-28 10:29:35 +08:00
parent 3065d346ea
commit af4f1d4966
2 changed files with 17 additions and 5 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,12 @@ export const Footer: React.FC = () => {
marginTop: 80,
}}
>
<i
style={{ fontSize: 30, color: "#cccccc" }}
className="iconfont icon-waterprint"
></i>
<Link to="/">
<i
style={{ fontSize: 30, color: "#cccccc" }}
className="iconfont icon-waterprint"
></i>
</Link>
</Layout.Footer>
);
};