diff --git a/docusaurus.config.ts b/docusaurus.config.ts
index 878220c..9968927 100644
--- a/docusaurus.config.ts
+++ b/docusaurus.config.ts
@@ -64,12 +64,12 @@ const config: Config = {
themeConfig: {
image: 'img/sn-social-card.png',
announcementBar: {
- id: 'linea-merger-may-2026',
+ id: 'docs-archived-2026',
content:
- 'Status Network is merging into Linea. Hoodi testnet (chain ID 374) shuts down on May 15, 2026 — bridge testnet ETH back to L1 before then.
Read the announcement · Open bridge',
- backgroundColor: '#7140fd',
- textColor: '#ffffff',
- isCloseable: true,
+ 'Archived documentation
Status Network has merged into Linea. The content here is obsolete and kept online for archival purposes only.
Read the merger announcement',
+ backgroundColor: '#fbbf24',
+ textColor: '#1f2937',
+ isCloseable: false,
},
navbar: {
title: 'Status Network Docs',
@@ -102,6 +102,12 @@ const config: Config = {
},
metadata: [
+ // Archive mode: prevent search engines from indexing the deprecated site
+ {
+ name: 'robots',
+ content: 'noindex, nofollow',
+ },
+
// General SEO
{
name: 'description',
diff --git a/i18n/ja/code.json b/i18n/ja/code.json
index 040f857..d0b045f 100644
--- a/i18n/ja/code.json
+++ b/i18n/ja/code.json
@@ -1,7 +1,7 @@
{
- "theme.announcementBar.lineaMergerMay2026": {
- "message": "Status Network は Linea に統合されます。Hoodi テストネット(チェーン ID 374)は 2026年5月15日に停止します
それまでにテストネット ETH を L1 にブリッジしてください。発表を読む · ブリッジを開く",
- "description": "Announcement bar HTML for Status Network merging into Linea and Hoodi testnet shutdown (May 15, 2026)."
+ "theme.announcementBar.docsArchived2026": {
+ "message": "ドキュメントのアーカイブについて
Status Network は Linea に合併しました。 ここに掲載されている内容は旧版であり、オンラインでの記録保管のみを目的として公開されています。
合併の発表を読む",
+ "description": "Announcement bar HTML notifying readers that the documentation is archived after the Status Network → Linea merger."
},
"theme.ErrorPageContent.title": {
"message": "エラーが発生しました",
diff --git a/i18n/ko/code.json b/i18n/ko/code.json
index 0a9f0d5..62010d4 100644
--- a/i18n/ko/code.json
+++ b/i18n/ko/code.json
@@ -1,7 +1,7 @@
{
- "theme.announcementBar.lineaMergerMay2026": {
- "message": "Status Network가 Linea에 합병됩니다.Hoodi 테스트넷(체인 ID 374)은 2026년 5월 15일에 종료됩니다 — 그 전에 테스트넷 ETH를 L1으로 브릿지하세요.
공지 읽기 · 브릿지 열기",
- "description": "Announcement bar HTML for Status Network merging into Linea and Hoodi testnet shutdown (May 15, 2026)."
+ "theme.announcementBar.docsArchived2026": {
+ "message": "문서 아카이브 안내
Status Network는 Linea로 통합되었습니다. 이 페이지의 콘텐츠는 더 이상 유효하지 않으며 온라인 아카이빙을 위해서만 유지됩니다.
통합 발표 읽기",
+ "description": "Announcement bar HTML notifying readers that the documentation is archived after the Status Network → Linea merger."
},
"theme.ErrorPageContent.title": {
"message": "페이지에 오류가 발생하였습니다.",
diff --git a/i18n/zh/code.json b/i18n/zh/code.json
index 303ce0f..dbf7251 100644
--- a/i18n/zh/code.json
+++ b/i18n/zh/code.json
@@ -1,7 +1,7 @@
{
- "theme.announcementBar.lineaMergerMay2026": {
- "message": "Status Network 正在合并至 Linea。Hoodi 测试网(链 ID 374)将于 2026 年 5 月 15 日关闭——请在此之前将测试网 ETH 跨回 L1。
阅读公告 · 打开跨链桥",
- "description": "Announcement bar HTML for Status Network merging into Linea and Hoodi testnet shutdown (May 15, 2026)."
+ "theme.announcementBar.docsArchived2026": {
+ "message": "归档文档
Status Network 已并入 Linea。 本站内容已过时,仅因归档需要而继续提供在线访问。
阅读合并公告",
+ "description": "Announcement bar HTML notifying readers that the documentation is archived after the Status Network → Linea merger."
},
"theme.ErrorPageContent.title": {
"message": "页面已崩溃。",
diff --git a/src/theme/AnnouncementBar/Content/index.tsx b/src/theme/AnnouncementBar/Content/index.tsx
index 6942940..5613da9 100644
--- a/src/theme/AnnouncementBar/Content/index.tsx
+++ b/src/theme/AnnouncementBar/Content/index.tsx
@@ -12,10 +12,10 @@ export default function AnnouncementBarContent(props: Props): ReactNode {
return null;
}
const html = translate({
- id: 'theme.announcementBar.lineaMergerMay2026',
+ id: 'theme.announcementBar.docsArchived2026',
message: announcementBar.content,
description:
- 'Announcement bar HTML for Status Network merging into Linea and Hoodi testnet shutdown (May 15, 2026).',
+ 'Announcement bar HTML notifying readers that the documentation is archived after the Status Network → Linea merger.',
});
return (