@@ -0,0 +1,12 @@
+.path_style {
+
+ color: #000;
+}
+.a_style {
+ color: #D1D3DA
+/* .path_style:hover {
+ color: #00b96b;
+} */
@@ -0,0 +1,17 @@
+import React from "react";
+import "./path.css";
+const Path = (props) => {
+ return (
+ <>
+ <a
+ href="https://beian.miit.gov.cn/#/Integrated/index"
+ className="a_style"
+ >
+ Copyright ©2017-2023 蜀IPC备1000111111xxxxxxxxx
+ </a>
+ </>
+ );
+};
+export default Path;