fix: 备案号添加跳转链接 (#1508)

Reviewed-on: daoyoucloud/tachybase#1508
Co-authored-by: wjh <wwwjh0710@163.com>
Co-committed-by: wjh <wwwjh0710@163.com>
This commit is contained in:
wjh 2024-09-03 19:03:39 +08:00 committed by bai.zixv
parent bf1f6349f1
commit da8df6ea63
2 changed files with 9 additions and 1 deletions

View File

@ -41,7 +41,12 @@ export const HomePage: React.FC<{}> = () => {
/> />
<Button onClick={onClick}></Button> <Button onClick={onClick}></Button>
</main> </main>
<footer>©2023-{year} ICP备2023024678号</footer> <footer>
©2023-{year} {' '}
<a href="https://beian.miit.gov.cn/" className="beian">
ICP备2023024678号
</a>
</footer>
</div> </div>
); );
}; };

View File

@ -76,6 +76,9 @@ export const useStyles = createStyles(({ css }) => ({
bottom: -30px; bottom: -30px;
width: 100%; width: 100%;
text-align: center; text-align: center;
.beian {
color: #000000;
}
} }
`, `,
})); }));