Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs[wip]: start cleaning up nitro/op #1900

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 11 additions & 21 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,13 @@ export default {

transformHead(assets: string[]): HeadConfig[] {
const youthRegularFont = assets.find(
(file) => /youth\/Youth-Regular\.\w+\.woff2/
(file) => /youth\/Youth-Regular\.\w+\.woff2/,
);
const untitledSansRegularFont = assets.find(
(file) => /Untitled-Sans-Regular\.\w+\.woff2/
(file) => /Untitled-Sans-Regular\.\w+\.woff2/,
);
const untitledSansMediumFont = assets.find(
(file) => /Untitled-Sans-Medium\.\w+\.woff2/
(file) => /Untitled-Sans-Medium\.\w+\.woff2/,
);

const headConfig: HeadConfig[] = [];
Expand Down Expand Up @@ -562,17 +562,13 @@ function sidebarHome() {
link: "/how-to-guides/arbitrum-integration",
},
{
text: "Quickstart: Deploy an Arbitrum Orbit rollup",
link: "/how-to-guides/arbitrum-deploy",
text: "Quickstart: Local development with Nitro testnode",
link: "/how-to-guides/nitro-local",
},
{
text: "How to run a full Orbit rollup node and validator",
link: "/how-to-guides/arbitrum-full-node",
},
{
text: "Bridging in and out of your Orbit rollup",
link: "/how-to-guides/arbitrum-bridge",
},
{
text: "How to customize your Orbit chain's deployment configuration",
link: "https://docs.arbitrum.io/launch-orbit-chain/how-tos/customize-deployment-configuration",
Expand Down Expand Up @@ -607,18 +603,8 @@ function sidebarHome() {
link: "/how-to-guides/optimism",
},
{
text: "OP Stack testnets",
collapsed: true,
items: [
{
text: "Bubs testnet",
link: "/how-to-guides/bubs-testnet",
},
{
text: "Raspberry testnet",
link: "https://raas.gelato.network/rollups/details/public/opcelestia-raspberry",
},
],
text: "Raspberry testnet",
link: "https://raas.gelato.network/rollups/details/public/opcelestia-raspberry",
},
{
text: "Audit",
Expand All @@ -636,6 +622,10 @@ function sidebarHome() {
text: "Conduit",
link: "https://conduit.xyz/",
},
{
text: "Gelato",
link: "https://raas.gelato.network/dashboard",
},
],
},
],
Expand Down
126 changes: 0 additions & 126 deletions how-to-guides/arbitrum-bridge.md

This file was deleted.

Loading