diff --git a/docs/overview.md b/docs/overview.md index 2311ee69..d55cc7c6 100644 --- a/docs/overview.md +++ b/docs/overview.md @@ -1,3 +1,14 @@ +--- +id: overview +title: Overview +description: Lido on Solana +keywords: + - lido + - solido + - solana +slug: / +sidebar_position: 1 +--- # Overview ## Lido on Solana diff --git a/docs/sunset.md b/docs/sunset.md index 88d1dfb1..317fca04 100644 --- a/docs/sunset.md +++ b/docs/sunset.md @@ -2,12 +2,6 @@ id: sunset title: Lido on Solana has been sunset description: Lido on Solana has been sunset -keywords: - - lido - - solido - - solana -slug: / -sidebar_position: 1 --- # Lido on Solana has been sunset! diff --git a/docusaurus.config.js b/docusaurus.config.js index 4dea676d..a7c44645 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -30,7 +30,10 @@ module.exports = { announcementBar: { id: "closing_solana", content: - "⚠ Lido on Solana has been sunset on the 4th of February and not supported by Lido DAO anymore", + "⚠ Due to the termination of development and technical support of Lido on" + + " Solana, from 16th of October, 2023, staking function is not available anymore." + + "
Please, unstake your funds via UI before 4th of February, 2024. For more" + + ' information, please visit our blog.', isCloseable: false, }, navbar: { diff --git a/sidebars.js b/sidebars.js index a489fb89..f3031e8d 100644 --- a/sidebars.js +++ b/sidebars.js @@ -3,8 +3,8 @@ module.exports = { solidoSidebar: [ { type: "doc", - id: "sunset", - label: "Sunset", + id: "overview", + label: "Overview", }, { type: "category", @@ -13,129 +13,118 @@ module.exports = { }, { type: "category", - label: "Outdated", + label: "Staking", + items: [{ type: "autogenerated", dirName: "staking" }], + }, + { + type: "doc", + id: "governance", + label: "Governance", + }, + { + type: "doc", + id: "administration", + label: "Administration", + }, + { + type: "doc", + id: "fees", + label: "Fees", + }, + { + type: "doc", + id: "validator-onboarding", + label: "Validator onboarding", + }, + { + type: "category", + label: "Operation", items: [ { type: "doc", - id: "overview", - label: "Overview", - }, - { - type: "category", - label: "Staking", - items: [{ type: "autogenerated", dirName: "staking" }], + id: "operation/the-solido-utility", + label: "The Solido utility", }, { type: "doc", - id: "governance", - label: "Governance", + id: "operation/maintenance", + label: "Maintenance", }, { type: "doc", - id: "administration", - label: "Administration", - }, - { - type: "doc", - id: "fees", - label: "Fees", - }, - { - type: "doc", - id: "validator-onboarding", - label: "Validator onboarding", + id: "operation/multisig-guide", + label: "Multisig guide", }, + ], + }, + { + type: "category", + label: "Development", + items: [{ type: "autogenerated", dirName: "development" }], + }, + { + type: "category", + label: "Frontend Integration", + items: [ { type: "category", - label: "Operation", + label: "SDK", items: [ - { - type: "doc", - id: "operation/the-solido-utility", - label: "The Solido utility", - }, - { - type: "doc", - id: "operation/maintenance", - label: "Maintenance", - }, - { - type: "doc", - id: "operation/multisig-guide", - label: "Multisig guide", - }, + { type: "autogenerated", dirName: "frontend-integration/sdk" }, ], }, { type: "category", - label: "Development", - items: [{ type: "autogenerated", dirName: "development" }], - }, - { - type: "category", - label: "Frontend Integration", + label: "Manual Instructions", items: [ { - type: "category", - label: "SDK", - items: [ - { type: "autogenerated", dirName: "frontend-integration/sdk" }, - ], - }, - { - type: "category", - label: "Manual Instructions", - items: [ - { - type: "autogenerated", - dirName: "frontend-integration/manual-instructions", - }, - ], + type: "autogenerated", + dirName: "frontend-integration/manual-instructions", }, ], }, + ], + }, + { + type: "category", + label: "Internals", + items: [ { - type: "category", - label: "Internals", - items: [ - { - type: "doc", - id: "internals/solana-staking", - label: "Staking on Solana", - }, - { - type: "doc", - id: "internals/commission", - label: "Commission", - }, - { - type: "doc", - id: "internals/withdrawals", - label: "Withdrawals", - }, - { - type: "doc", - id: "internals/exchange-rate", - label: "Exchange rate", - }, - ], + type: "doc", + id: "internals/solana-staking", + label: "Staking on Solana", }, { type: "doc", - id: "incentives", - label: "Incentives", + id: "internals/commission", + label: "Commission", }, { type: "doc", - id: "deployments", - label: "Deployments", + id: "internals/withdrawals", + label: "Withdrawals", }, { type: "doc", - id: "security", - label: "Security", + id: "internals/exchange-rate", + label: "Exchange rate", }, ], }, + { + type: "doc", + id: "incentives", + label: "Incentives", + }, + { + type: "doc", + id: "deployments", + label: "Deployments", + }, + { + type: "doc", + id: "security", + label: "Security", + }, ], };