Skip to content

Commit 726c6c5

Browse files
committed
chore: update blog addr
1 parent 3731aee commit 726c6c5

File tree

1 file changed

+6
-21
lines changed

1 file changed

+6
-21
lines changed

frontend/src/components/Layout.tsx

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const Layout = ({ children }: LayoutProps) => {
1818

1919
return (
2020
<Theme appearance="light">
21-
<Flex direction="column" className="min-h-[100vh]" >
21+
<Flex direction="column" className="min-h-[100vh]">
2222
{/* 顶部导航栏 */}
2323
<Navbar />
2424

@@ -36,16 +36,11 @@ const Layout = ({ children }: LayoutProps) => {
3636
<Flex gap="3" mt="2" direction={{ initial: "column", sm: "row" }}>
3737
<Button variant="link" asChild>
3838
<a
39-
href="https://zaunist.com"
39+
href="https://ajielu.vercel.app"
4040
target="_blank"
4141
rel="noopener noreferrer"
42-
4342
>
44-
<FontAwesomeIcon
45-
icon={faRss}
46-
size="lg"
47-
48-
/>
43+
<FontAwesomeIcon icon={faRss} size="lg" />
4944
<Text size="2">{t("footer.blog")}</Text>
5045
</a>
5146
</Button>
@@ -54,13 +49,8 @@ const Layout = ({ children }: LayoutProps) => {
5449
href="https://www.youtube.com/@zaunist"
5550
target="_blank"
5651
rel="noopener noreferrer"
57-
5852
>
59-
<FontAwesomeIcon
60-
icon={faYoutube}
61-
size="lg"
62-
63-
/>
53+
<FontAwesomeIcon icon={faYoutube} size="lg" />
6454
<Text size="2">{t("footer.youtube")}</Text>
6555
</a>
6656
</Button>
@@ -69,21 +59,16 @@ const Layout = ({ children }: LayoutProps) => {
6959
href="https://mail.mdzz.uk"
7060
target="_blank"
7161
rel="noopener noreferrer"
72-
7362
>
74-
<FontAwesomeIcon
75-
icon={faEnvelope}
76-
size="lg"
77-
78-
/>
63+
<FontAwesomeIcon icon={faEnvelope} size="lg" />
7964
<Text size="2">{t("footer.tempMail")}</Text>
8065
</a>
8166
</Button>
8267
</Flex>
8368
</Flex>
8469
</Container>
8570
</Box>
86-
<Toaster />
71+
<Toaster />
8772
</Flex>
8873
</Theme>
8974
);

0 commit comments

Comments
 (0)