登陆页面水印

This commit is contained in:
unknown
2023-09-26 21:42:18 +08:00
parent 61573f1891
commit a5d579d3e7
3 changed files with 19 additions and 2 deletions

View File

@@ -2,12 +2,16 @@ import React from "react";
import { Layout } from "antd";
import { Link } from "react-router-dom";
export const Footer: React.FC = () => {
interface PropInterface {
type?: string;
}
export const Footer: React.FC<PropInterface> = ({ type }) => {
return (
<Layout.Footer
style={{
width: "100%",
backgroundColor: "#F6F6F6",
background: type === "none" ? "none" : "#F6F6F6",
height: 166,
paddingTop: 80,
textAlign: "center",