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: change build-whatever page to rollup-stacks #1801

Merged
merged 1 commit into from
Nov 22, 2024
Merged
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
6 changes: 3 additions & 3 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function nav() {
items: [
{ text: "Learn", link: "/learn/how-celestia-works/overview" },
{ text: "Quick start", link: "/how-to-guides/quick-start" },
{ text: "Build whatever", link: "/how-to-guides/build-whatever" },
{ text: "Rollup stacks", link: "/how-to-guides/rollup-stacks" },
{
text: "Resources",
items: [
Expand Down Expand Up @@ -535,12 +535,12 @@ function sidebarHome() {
],
},
{
text: "Build whatever",
text: "Rollup stacks",
collapsed: true,
items: [
{
text: "Overview",
link: "/how-to-guides/build-whatever",
link: "/how-to-guides/rollup-stacks",
},
{
text: "EVM",
Expand Down
2 changes: 1 addition & 1 deletion how-to-guides/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,6 @@ If you run into issues, check out the [troubleshooting](./celestia-node-troubles

## Next steps

Check out the [build whatever page](./build-whatever.md) to get started learning about ways to build with Celestia underneath.
Check out the [rollup stacks page](./rollup-stacks.md) to get started learning about ways to build whatever with Celestia underneath.
jcstein marked this conversation as resolved.
Show resolved Hide resolved

Head to the next page to learn about different node types for the consensus and DA networks.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description: Advantages of building on modular blockchains like Celestia.
---

# Build whatever
# Rollup stacks

If you're a developer and want to know what the benefits of modular blockchains
are for you, you’ve come to the right place. This page will give you the rundown on modular
Expand All @@ -26,7 +26,6 @@ Here are a few options that are currently available for developers.
<div style="display: flex; flex-wrap: wrap; justify-content: center; align-items: center; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px;">
<UrlImageButton url="/how-to-guides/intro-to-op-stack" imageSrc="/build/opstack.webp" text="OP Stack" notes="EVM" target="_self" alt="OP Stack logo" aria-label="OP Stack"/>
<UrlImageButton url="/how-to-guides/arbitrum-integration" imageSrc="/build/arbitrum.webp" text="Arbitrum Orbit" notes="EVM" target="_self" alt="Arbitrum logo" aria-label="Arbitrum"/>
<!-- <UrlImageButton url="/how-to-guides/build-whatever" imageSrc="/build/polygon.webp" text="Polygon CDK" target="_self" notes="EVM: Coming soon" alt="Polygon logo" aria-label="Polygon"/> -->
<UrlImageButton url="https://github.com/Sovereign-Labs/sovereign-sdk/tree/stable/examples/demo-rollup#demo-rollup" imageSrc="/build/sovereign.webp" text="Sovereign SDK" notes="Sovereign" alt="Sovereign logo" aria-label="Sovereign"/>
<UrlImageButton url="https://docs.dymension.xyz/" imageSrc="/build/dymension.webp" text="Dymension" alt="Dymension logo" aria-label="Dymension"/>
<UrlImageButton url="https://docs.stf.xyz" imageSrc="/build/stackr.webp" text="Stackr" alt="Stackr logo" aria-label="Stackr"/>
Expand Down
2 changes: 1 addition & 1 deletion tutorials/integrate-celestia.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ When getting started with Celestia, we recommend checking out these resources fi
- [Celestia's DA Layer](../learn/how-celestia-works/data-availability-layer.md)
- [Learn modular](https://celestia.org/learn)
- [Overview to running nodes on Celestia](../how-to-guides/nodes-overview.md)
- [Build whatever](./build-whatever.md)
- [Rollup stacks](./rollup-stacks.md)

## Celestia service provider notes

Expand Down
Loading