mirror of
https://github.com/PlayEdu/backend
synced 2025-12-30 10:19:47 +08:00
优化组件名
This commit is contained in:
32
src/compenents/footer/index.tsx
Normal file
32
src/compenents/footer/index.tsx
Normal file
@@ -0,0 +1,32 @@
|
||||
import React from "react";
|
||||
import { Layout, Typography } from "antd";
|
||||
|
||||
export const Footer: React.FC = () => {
|
||||
return (
|
||||
<Layout.Footer
|
||||
style={{ backgroundColor: "#0F0A1E", height: 103, paddingTop: 30 }}
|
||||
>
|
||||
<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>
|
||||
</Layout.Footer>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user