Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanHsieh0415 committed Jun 22, 2024
1 parent 2e15971 commit 4a65fed
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .vuepress/navbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { navbar } from "vuepress-theme-hope";

export default navbar([
"/",
{ text: "相關連結", icon: "list-ol", link: "posts/links/" },
{ text: "筆記", icon: "book", link: "posts/notes/" },
{ text: "程式碼片段", icon: "book", link: "posts/snippets/" },
{ text: "小技巧", icon: "book", link: "posts/tips-and-tricks/" },
{ text: "相關連結", icon: "list-ol", link: "/posts/links/" },
{ text: "筆記", icon: "book", link: "/posts/notes/" },
{ text: "程式碼片段", icon: "book", link: "/posts/snippets/" },
{ text: "小技巧", icon: "book", link: "/posts/tips-and-tricks/" },
]);
6 changes: 6 additions & 0 deletions .vuepress/styles/index.scss
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
// place your custom styles here

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

body {
font-family: 'Noto Sans TC', sans-serif;
}
4 changes: 3 additions & 1 deletion .vuepress/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ export default hopeTheme({
medias: {
Discord: "https://discord.com/invite/SCAfRyAVnR",
GitHub: "https://github.com/EvanHsieh0415/",
QQ: "https://example.com",
QQ: "https://qm.qq.com/q/sVBjgOfvtm",
},
name: "芒果凍布丁",
avatar: "https://avatars.githubusercontent.com/u/74277414",
},

metaLocales: {
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ projects:
- icon: list-ol
name: 相關連結
desc: 關於 KubeJS 的一些連結
link: "links/"
link: "/posts/links/"

- icon: book
name: 筆記
desc: 紀錄一些新發現的事物
link: "notes/"
link: "/posts/notes/"

- icon: book
name: 程式碼片段
desc: 一些可以用於 KubeJS 的程式碼片段
link: "snippets/"
link: "/posts/snippets/"

- icon: book
name: 小技巧
desc: 有趣的 KubeJS 小技巧
link: "tips-and-tricks/"
link: "/posts/tips-and-tricks/"
---

0 comments on commit 4a65fed

Please sign in to comment.