From 70f2676c79adba9f9fcd6edabccc232fd915c957 Mon Sep 17 00:00:00 2001 From: zdl <3489966805@qq.com> Date: Fri, 24 Oct 2025 17:10:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0appfooter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/AppFooter.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/layouts/AppFooter.js diff --git a/src/layouts/AppFooter.js b/src/layouts/AppFooter.js new file mode 100644 index 00000000..e799ae2b --- /dev/null +++ b/src/layouts/AppFooter.js @@ -0,0 +1,32 @@ +import React from 'react'; +import { Box, Container, VStack, HStack, Text, Link, useColorModeValue } from '@chakra-ui/react'; + +/** + * 应用通用页脚组件 + * 包含版权信息、备案号等 + */ +const AppFooter = () => { + return ( + + + + + © 2024 价值前沿. 保留所有权利. + + + + 京公网安备11010802046286号 + + 京ICP备2025107343号-1 + + + + + ); +}; + +export default AppFooter;