首页概览引入底部组件

This commit is contained in:
禺狨
2023-03-20 15:38:11 +08:00
parent 099323ece1
commit 6baafcb579
3 changed files with 14 additions and 63 deletions

View File

@@ -1,32 +1,21 @@
import React from "react";
import { Layout, Typography } from "antd";
import { Layout } from "antd";
export const Footer: React.FC = () => {
return (
<Layout.Footer
style={{ backgroundColor: "#0F0A1E", height: 103, paddingTop: 30 }}
style={{
width: "100%",
backgroundColor: "#F6F6F6",
height: 232,
paddingTop: 80,
textAlign: "center",
}}
>
<Typography.Title
style={{
textAlign: "center",
fontSize: 12,
color: "#FFFFFF",
opacity: 0.3,
}}
>
© 2021 PlayEdu ICP备20026280号-01
</Typography.Title>
<Typography.Title
style={{
textAlign: "center",
fontSize: 12,
color: "#FFFFFF",
opacity: 0.3,
marginTop: 19,
}}
>
Powered By
</Typography.Title>
<i
style={{ fontSize: 30, color: "#cccccc" }}
className="iconfont icon-waterprint"
></i>
</Layout.Footer>
);
};