diff --git a/README.md b/README.md
index f3f2a091e..d83f02e14 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
GitHub Profile Summary Cards
- [繁體中文](./docs/README.zh-tw.md)
+ [English](/README.md) | [简体中文](/docs/README_zh.md) | [繁體中文](/docs/README_zh-tw.md)
A tool to generate your github summary card for profile README. Inspired by profile-summary-for-github
diff --git a/docs/README_zh-CN.md b/docs/README_zh-CN.md
new file mode 100644
index 000000000..8759aa6a9
--- /dev/null
+++ b/docs/README_zh-CN.md
@@ -0,0 +1,204 @@
+
+
GitHub Profile Summary Cards
+
+
+ [English](/README.md) | [简体中文](/docs/README_zh.md) | [繁體中文](/docs/README_zh-tw.md)
+
+ 一个用来生成github个人简介摘要的工具. 受到 profile-summary-for-github的启发
+
+
+ :star: 欢迎大家随时贡献 :star:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+生成你的个人卡片
+
+
+
+
+
+
+
+
+
+
+
+## Themes | 主题
+
+| | | | | |
+|:---:|:---:|:---:|:---:|:---:|
+|default|2077|dracula|github|github_dark|
+||| |||
+|gruvbox|monokai|nord_bright|nord_dark|radical|
+||| | ||
+|solarized|solarized_dark|tokyonight|vue|zenburn|
+||| | ||
+|transparent|
+||
+
+[更多主题](https://github.com/vn7n24fzkq/github-profile-summary-cards-example/tree/master/profile-summary-card-output)
+
+## 如何使用 (API)
+### 简介摘要卡片
+
+
+`http://github-profile-summary-cards.vercel.app/api/cards/profile-details?username={username}&theme={theme_name}`
+- 可接收的链接参数
+ - theme
+ - Theme name
+ - username
+ - Username
+### 仓库首选语言卡片
+
+
+`http://github-profile-summary-cards.vercel.app/api/cards/repos-per-language?username={username}&theme={theme_name}&exclude={exclude}`
+- 可接收的参数
+ - theme
+ - Theme name
+ - username
+ - Username
+ - exclude:
+ - 排除以逗号分隔的语言列表, e.g., exclude=java,rust,jupyter%20Notebook
+ - 当语言中有空格时,使用'%20'来表示.
+ - [提供支持的语言](https://github.com/github/linguist/blob/master/lib/linguist/languages.yml)
+
+### 提交首选语言卡片
+
+
+`http://github-profile-summary-cards.vercel.app/api/cards/most-commit-language?username={username}&theme={theme_name}&exclude={exclude}`
+- 可接收的参数
+ - theme
+ - Theme name
+ - username
+ - Username
+ - exclude:
+ - 排除以逗号分隔的语言列表, e.g., exclude=java,rust,jupyter%20Notebook
+ - 当语言中有空格时,使用'%20'来表示
+ - [提供支持的语言](https://github.com/github/linguist/blob/master/lib/linguist/languages.yml)
+
+### GitHub 状态卡片
+
+
+`http://github-profile-summary-cards.vercel.app/api/cards/stats?username={username}&theme={theme_name}`
+- 可接收的参数
+ - theme
+ - Theme name
+ - username
+ - Username
+
+### 提交时间表卡片
+
+
+`http://github-profile-summary-cards.vercel.app/api/cards/productive-time?username={username}&theme={theme_name}&utcOffset={utcOffset}`
+- 可接收的参数
+ - theme
+ - username
+ - utcOffset
+
+---
+
+## 如何使用 (GitHub Actions)
+
+此操作会生成您的GitHub个人资料摘要卡,并提交到您的存储库。添加此操作后,您还可以自己触发操作。
+
+:star: [教程](https://github.com/vn7n24fzkq/github-profile-summary-cards/wiki/Tutorial) ( Recommendation ) :star:
+
+#### 首先
+
+- 你需要正确授权的token | [Personal access token](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token).
+ [Personal token](https://github.com/vn7n24fzkq/github-profile-summary-cards/wiki/Tutorial#generate-token)
+
+- 添加 personal access token 到 repo secret.
+
+#### 使用模版 ( create a repository )
+
+- [github-profile-summary-cards-example](https://github.com/vn7n24fzkq/github-profile-summary-cards-example)
+
+- Action 已经准备就绪, 点击 `use this template button` 创建个人简介.
+
+- 在把 GITHUB_TOKEN 替换为你的 repo secret 之后触发 action ,你可以在 `profile-summary-card-output` 下尽情使用.
+
+#### 添加到已经创建的仓库
+
+- 将此 action 添加到你的仓库, 将你的 GITHUB_TOKEN in action yml file 替换成你的 repo secret.
+
+---
+
+## GitHub Actions 使用方法
+
+在 action 完成之后. 你可以在 `profile-summary-card-output` 看到所有的摘要卡片.
+
+`注意: 一些摘要卡片可能不会及时更新, 因为github原始文件需要缓冲`
+
+```yml
+name: GitHub-Profile-Summary-Cards
+
+on:
+ schedule: # execute every 24 hours
+ - cron: "* */24 * * *"
+ workflow_dispatch:
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ name: generate-github-profile-summary-cards
+ permissions:
+ contents: write
+
+ steps:
+ - uses: actions/checkout@v4
+ - uses: vn7n24fzkq/github-profile-summary-cards@release
+ env: # default use ${{ secrets.SUMMARY_GITHUB_TOKEN }}, you should replace with your personal access token
+ GITHUB_TOKEN: ${{ secrets.SUMMARY_GITHUB_TOKEN }}
+ with:
+ USERNAME: ${{ github.repository_owner }}
+ # BRANCH_NAME is optional, default to main, branch name to push cards
+ BRANCH_NAME: "main"
+ # UTC_OFFSET is optional, default to zero
+ UTC_OFFSET: 8
+ # EXCLUDE is an optional comma seperated list of languages to exclude, defaults to ""
+ EXCLUDE: ""
+ # AUTO_PUSH is optional, a boolean variable default to true, whether automatically push generated files to desired branch
+ AUTO_PUSH: true
+```
+
+---
+
+## 本地运行
+
+- 需要 `node 16` 版本, 低版本可能会造成问题.
+- 添加 personal access token 到 `.env` 文件. ex: `GITHUB_TOKEN=abcda69ddf66ae95538c5b1666591b59b4abc73a`
+- 代码修改完毕后执行 `npm run build`
+
+```sh
+npm run run [username] [UTC offset]
+```
+
+例如
+
+```sh
+npm run run vn7n24fzkq 8
+```
+
+- 可使用 vercel 开发包本地运行API
+
+```sh
+vercel dev
+```
+
+## 在 Vercel 上部署API
+快速部署
+
+[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fvn7n24fzkq%2Fgithub-profile-summary-cards&env=GITHUB_TOKEN&envDescription=https%3A%2F%2Fgithub.com%2Fvn7n24fzkq%2Fgithub-profile-summary-cards%23first-step&project-name=my-github-profile-summary-cards)
diff --git a/docs/README.zh-tw.md b/docs/README_zh-tw.md
similarity index 98%
rename from docs/README.zh-tw.md
rename to docs/README_zh-tw.md
index 4a970bae7..feacaf788 100644
--- a/docs/README.zh-tw.md
+++ b/docs/README_zh-tw.md
@@ -6,7 +6,7 @@
[](https://github.com/vn7n24fzkq/github-profile-summary-cards/blob/master/LICENSE)

-[繁體中文](./docs/README.zh-tw.md)
+[English](/README.md) | [简体中文](/docs/README_zh.md) | [繁體中文](/docs/README_zh-tw.md)
:star: 這份 repo 是好玩才寫的,任何貢獻都很歡迎! :star: