diff --git a/packages/frontend/src/components/TitleBar.astro b/packages/frontend/src/components/TitleBar.astro
index af6d723..aa0963e 100644
--- a/packages/frontend/src/components/TitleBar.astro
+++ b/packages/frontend/src/components/TitleBar.astro
@@ -6,7 +6,7 @@ import SearchBox from "@components/SearchBox.svelte";
import TitleBarMobile from "@components/TitleBarMobile.svelte";
---
-
+
根据原始协议第四条第2项内容,CC BY-NC-SA 4.0协议为与原始协议具有相同授权要素的后续版本(“可适用的协议”)。
+- 中V档案馆文档使用[CC BY 4.0协议](https://creativecommons.org/licenses/by/4.0/)。
+
+### 软件代码
+
+用于构建中V档案馆的软件代码在[AGPL 3.0](https://www.gnu.org/licenses/agpl-3.0.html)许可证下公开,参见[LICENSE](./LICENSE)
+
+[^1]: 引用自[VCPedia](https://vcpedia.cn/%E9%A6%96%E9%A1%B5),于[知识共享 署名-非商业性使用-相同方式共享 3.0中国大陆 (CC BY-NC-SA 3.0 CN) 许可协议](https://creativecommons.org/licenses/by-nc-sa/3.0/cn/)下提供。
+
+[^2]: 翻译自[VocaDB](https://vocadb.net/),于[CC BY 4.0协议](https://creativecommons.org/licenses/by/4.0/)下提供。
+
+[^3]: 引用自[关于 - 天钿Daily](https://tdd.bunnyxt.com/about)
diff --git a/packages/frontend/src/pages/about.astro b/packages/frontend/src/pages/about.astro
index 9fe94a6..8f50a8e 100644
--- a/packages/frontend/src/pages/about.astro
+++ b/packages/frontend/src/pages/about.astro
@@ -1,15 +1,15 @@
---
import TitleBar from "@components/TitleBar.astro";
import Layout from '@layouts/Layout.astro';
+import {Content as AboutContent} from '../content/about.md';
+import "../styles/content.css";
---
-
-
-
-
- 正在施工中……
-
-
-
+
+
+
+
\ No newline at end of file
diff --git a/packages/frontend/src/styles/content.css b/packages/frontend/src/styles/content.css
new file mode 100644
index 0000000..74c9bd1
--- /dev/null
+++ b/packages/frontend/src/styles/content.css
@@ -0,0 +1,76 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+.content {
+ @apply text-gray-800 dark:text-zinc-100;
+
+ h1,
+ h2,
+ h3,
+ h4 {
+ @apply font-bold text-gray-900 dark:text-white my-4;
+ }
+
+ h1 {
+ @apply text-3xl;
+ }
+
+ h2 {
+ @apply text-2xl;
+ }
+
+ h3 {
+ @apply text-xl;
+ }
+
+ h4 {
+ @apply text-lg;
+ }
+
+ p {
+ @apply my-4;
+ }
+
+ a {
+ @apply text-blue-500 hover:text-blue-700 dark:hover:text-blue-400 underline;
+ }
+
+ ul,
+ ol {
+ @apply list-disc list-inside my-4;
+ }
+
+ li {
+ @apply my-2;
+ }
+
+ blockquote {
+ @apply border-l-4 border-gray-300 pl-4 italic my-4;
+ }
+
+ code {
+ @apply bg-gray-100 text-gray-800 rounded px-1 duration-300;
+ }
+
+ pre {
+ @apply bg-gray-100 p-4 rounded overflow-x-auto my-4 duration-300 h-0;
+ }
+
+ table {
+ @apply w-full border-collapse my-4;
+ }
+
+ th,
+ td {
+ @apply border border-gray-300 p-2;
+ }
+
+ th {
+ @apply bg-gray-200 font-bold;
+ }
+ ul li p,
+ ol li p {
+ @apply inline;
+ }
+}
\ No newline at end of file