> = {
"View official ARK recommendations and prioritized trusted resources.",
favorites:
"Favorites are in development and will help you manage commonly used ARK resources.",
- about:
- "Learn about the ARK Library purpose, resource scope, and indexing notes.",
search:
"Search ARK Library titles, categories, tags, summaries, file types, and body text.",
},
@@ -136,13 +133,6 @@ function routeMeta(
};
}
- if (pathname === "/about") {
- return {
- title: t("footerAbout"),
- description: metaDescription(lang, "about"),
- };
- }
-
return { title: t("brand"), description: metaDescription(lang, "home") };
}
diff --git a/src/i18n.tsx b/src/i18n.tsx
index 72f1887..ca3b7d7 100644
--- a/src/i18n.tsx
+++ b/src/i18n.tsx
@@ -122,10 +122,6 @@ const zhDict: Dict = {
resourceLangFilter: "资料语言",
filterTagClear: "清除标签",
filterLanguageAll: "全部语言",
- aboutTitle: "关于本站",
- aboutIntro:
- "ARK 数据库汇总官方教材、公告、视频与常用文件,帮助社区快速获取一致版本的可信内容。\n\n本站仅供展示与索引;权利归属以官方公告为准。",
- footerAbout: "关于本站",
footerAdminLogin: "管理员登录",
adminSearchLogs: "搜索记录",
adminMetricShares: "分享",
@@ -254,10 +250,6 @@ const enDict: Dict = {
resourceLangFilter: "Resource language",
filterTagClear: "Clear tag",
filterLanguageAll: "All languages",
- aboutTitle: "About this site",
- aboutIntro:
- "The ARK library brings together official decks, announcements, videos, and common files so the community can find consistent, trustworthy versions quickly.\n\nThis site is for discovery and indexing only; rights remain with official notices.",
- footerAbout: "About",
footerAdminLogin: "Admin sign-in",
adminSearchLogs: "Search logs",
adminMetricShares: "Shares",
diff --git a/src/layouts/PublicLayout.tsx b/src/layouts/PublicLayout.tsx
index 6b78a19..c48b6ca 100644
--- a/src/layouts/PublicLayout.tsx
+++ b/src/layouts/PublicLayout.tsx
@@ -17,8 +17,7 @@ type PublicNavWhich =
| "browseLatest"
| "browseRecommended"
| "browsePopular"
- | "favorites"
- | "about";
+ | "favorites";
function navIsActive(
pathname: string,
@@ -47,8 +46,6 @@ function navIsActive(
return (
pathname === "/favorites" || (pathname === "/" && hash === "#favorites")
);
- case "about":
- return pathname === "/about";
default:
return false;
}
@@ -477,13 +474,6 @@ export function PublicLayout() {
>
{t("favorites")}
-
- {t("footerAbout")}
-
@@ -593,14 +583,6 @@ export function PublicLayout() {
>
{t("favorites")}
- setOpen(false)}
- >
- {t("footerAbout")}
-
) : null}
@@ -637,19 +619,6 @@ export function PublicLayout() {
-
-