File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 88} from "@ant-design/icons" ;
99import { Button } from "antd" ;
1010
11+ import { config } from "../config" ;
12+
1113interface AboutProps {
1214 title ?: string ;
1315}
@@ -90,7 +92,7 @@ export function About({ title = "关于我" }: AboutProps) {
9092 size = "large"
9193 shape = "round"
9294 icon = { < MailOutlined /> }
93- 95+ href = { config . social . email }
9496 >
9597 邮箱
9698 </ Button >
@@ -99,7 +101,7 @@ export function About({ title = "关于我" }: AboutProps) {
99101 size = "large"
100102 shape = "round"
101103 icon = { < EditOutlined /> }
102- href = "https://note.weizwz.com/pages/links"
104+ href = { config . blog . linksUrl }
103105 target = "_blank"
104106 >
105107 留言
Original file line number Diff line number Diff line change 1+ import { config } from "../config" ;
2+
13export function Footer ( ) {
24 return (
35 < footer className = "w-full px-4 md:px-12 py-12 flex flex-col items-center gap-4" >
@@ -21,7 +23,7 @@ export function Footer() {
2123 < a target = "_blank" href = "https://iconify.design/" title = "本站图标API使用 iconify" >
2224 < img alt = "iconify" src = "https://img.shields.io/badge/Icon API-iconify-1769AA?logo=iconify&logoColor=fff" />
2325 </ a >
24- < a target = "_blank" href = "https://github.com/weizwz" title = "本站代码托管于 Github" >
26+ < a target = "_blank" href = { config . social . github } title = "本站代码托管于 Github" >
2527 < img alt = "Github" src = "https://img.shields.io/badge/Code-Github-432DD7?logo=github&logoColor=fff" />
2628 </ a >
2729 < a target = "_blank" href = "https://vercel.com/" title = "本站部署于 Vercel" >
You can’t perform that action at this time.
0 commit comments