feat: add documentation link to footer

This commit is contained in:
javayhu 2025-04-23 09:17:38 +08:00
parent 38865a6069
commit 48270b17ee
3 changed files with 7 additions and 0 deletions

View File

@ -401,6 +401,7 @@
"title": "Resources",
"items": {
"blog": "Blog",
"docs": "Documentation",
"changelog": "Changelog",
"roadmap": "Roadmap"
}

View File

@ -402,6 +402,7 @@
"title": "资源",
"items": {
"blog": "博客",
"docs": "文档",
"changelog": "更新日志",
"roadmap": "路线图"
}

View File

@ -46,6 +46,11 @@ export function getFooterLinks(): NestedMenuItem[] {
href: Routes.Blog,
external: false,
},
{
title: t('resources.items.docs'),
href: Routes.Docs,
external: false,
},
{
title: t('resources.items.changelog'),
href: Routes.Changelog,