Parcourir la source

add 备案号

visuddhinanda il y a 2 ans
Parent
commit
75452b0ba8

+ 4 - 1
dashboard/src/components/library/FooterBar.tsx

@@ -1,5 +1,6 @@
 import { Link } from "react-router-dom";
 import { Layout, Row, Col, Typography } from "antd";
+import BeiAn from "../general/BeiAn";
 
 const { Footer } = Layout;
 const { Paragraph } = Typography;
@@ -26,7 +27,9 @@ const FooterBarWidget = () => {
         </Col>
       </Row>
       <Row>
-        <Col>Powered by PCDS</Col>
+        <Col>
+          <BeiAn />
+        </Col>
       </Row>
     </Footer>
   );

+ 7 - 1
dashboard/src/components/studio/Footer.tsx

@@ -1,5 +1,11 @@
+import BeiAn from "../general/BeiAn";
+
 const FooterWidget = () => {
-  return <div>Studio Footer</div>;
+  return (
+    <div>
+      <BeiAn />
+    </div>
+  );
 };
 
 export default FooterWidget;