-
+
{"SPONSOR"}
-
+
{
"If you like my works, I would deeply appreciate your support as a patron. Your contribution not only fuels my creative journey but also allows me to delve deeper into my passion. Your support plays a vital role in making this vision a reality. Thank you for considering becoming a patron and being an integral part of this work endeavor."
}
diff --git a/pages/tags/[...slug].tsx b/pages/tags/[...slug].tsx
index ff41f84..e61ddee 100644
--- a/pages/tags/[...slug].tsx
+++ b/pages/tags/[...slug].tsx
@@ -8,7 +8,7 @@ import { PostCountPerPagination } from "@/consts/consts";
import { Config } from "@/data/config";
import { sortedPosts } from "@/lib/post-process";
import { paginateArray } from "@/lib/utils";
-import { fontFzxbs } from "@/styles/font";
+import { fontFangZhengXiaoBiaoSongCN } from "@/styles/font";
import { TPostListItem } from "@/types/post-list";
import { GetStaticPaths, GetStaticProps } from "next";
import Link from "next/link";
@@ -51,7 +51,7 @@ export default function TagsContentPage(props: TagsContentPageProps) {
/>
-
+
{`Posts of ${props.tagName}`}
diff --git a/pages/tags/index.tsx b/pages/tags/index.tsx
index ad50219..04c1dbb 100644
--- a/pages/tags/index.tsx
+++ b/pages/tags/index.tsx
@@ -5,7 +5,7 @@ import { SEO } from "@/components/utils/SEO";
import { TagBadge } from "@/components/utils/TagBadge";
import { Config } from "@/data/config";
import { sortedPosts } from "@/lib/post-process";
-import { fontFzxbs, fontSypxzs } from "@/styles/font";
+import { fontFangZhengXiaoBiaoSongCN, fontSourceSerifScreenCN } from "@/styles/font";
import { nanoid } from "nanoid";
import { GetStaticProps } from "next";
import { AiOutlineTags } from "react-icons/ai";
@@ -24,11 +24,11 @@ export default function TagsIndexPage(props: TagsIndexPageProps) {
/>
-
+
{"ALL TAGS"}
-
+
{props.tagList.map((item) => (
))}
diff --git a/styles/font.ts b/styles/font.ts
index 3535ab2..49d04b7 100644
--- a/styles/font.ts
+++ b/styles/font.ts
@@ -1,4 +1,6 @@
import localFont from "next/font/local";
-export const fontSypxzs = localFont({ src: "../assets/fonts/sypxzs.woff2" }); // 思源屏显臻宋
-export const fontFzxbs = localFont({ src: "../assets/fonts/fzxbs.woff2" }); // 方正小标宋
+// 思源屏显臻宋 简体中文
+export const fontSourceSerifScreenCN = localFont({ src: "../assets/fonts/SourceSerifScreen-CN.woff2" });
+// 方正小标宋 简体中文
+export const fontFangZhengXiaoBiaoSongCN = localFont({ src: "../assets/fonts/FangZhengXiaoBiaoSong-CN.woff2" });