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

enhance visibility of orchestration API #1223

Merged
merged 3 commits into from
Oct 1, 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
66 changes: 33 additions & 33 deletions main/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,39 @@ export default defineConfig({
// Trailing slash implies it is looking for a .md file
sidebar: {
'/': [
{
text: 'Orchestrate',
link: '/guides/orchestration/',
collapsed: true,
items: [
{
text: 'Key Concepts',
link: '/guides/orchestration/getting-started/key-concepts',
},
{
text: 'API',
link: '/guides/orchestration/getting-started/api',
},
{
text: 'Contract Walkthroughs',
link: '/guides/orchestration/getting-started/contract-walkthroughs',
items: [
{
text: 'Cross-Chain Swap Example',
link: '/guides/orchestration/getting-started/contract-walkthrough/cross-chain-swap',
},
{
text: 'Cross-Chain Unbond Example',
link: '/guides/orchestration/getting-started/contract-walkthrough/cross-chain-unbond',
},
{
text: 'Orchestration Basics',
link: '/guides/orchestration/getting-started/contract-walkthrough/orchestration-basics',
}
]
},
]
},
{
text: 'Build',
collapsed: true,
Expand Down Expand Up @@ -420,39 +453,6 @@ export default defineConfig({
},
],
},
{
text: 'Orchestration',
link: '/guides/orchestration/',
collapsed: true,
items: [
{
text: 'Key Concepts',
link: '/guides/orchestration/getting-started/key-concepts',
},
{
text: 'API',
link: '/guides/orchestration/getting-started/api',
},
{
text: 'Contract Walkthroughs',
link: '/guides/orchestration/getting-started/contract-walkthroughs',
items: [
{
text: 'Cross-Chain Swap Example',
link: '/guides/orchestration/getting-started/contract-walkthrough/cross-chain-swap',
},
{
text: 'Cross-Chain Unbond Example',
link: '/guides/orchestration/getting-started/contract-walkthrough/cross-chain-unbond',
},
{
text: 'Orchestration Basics',
link: '/guides/orchestration/getting-started/contract-walkthrough/orchestration-basics',
}
]
},
]
},
{
text: 'JavaScript Framework',
ariaLabel: 'JavaScript Framework',
Expand Down
41 changes: 35 additions & 6 deletions main/.vitepress/themeConfig/nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,41 @@
// Trailing slash implies it is looking for a .md file

export const nav = [
{
text: 'Orchestrate',
collapsed: true,
items: [
{
text: 'What is Orchestration?',
link: '/guides/orchestration/',
},
{
text: 'Key Concepts',
link: '/guides/orchestration/getting-started/key-concepts',
},
{
text: 'API',
link: '/guides/orchestration/getting-started/api',
},
{
text: 'Contract Walkthroughs',
items: [
{
text: 'Cross-Chain Swap Example',
link: '/guides/orchestration/getting-started/contract-walkthrough/cross-chain-swap',
},
{
text: 'Cross-Chain Unbond Example',
link: '/guides/orchestration/getting-started/contract-walkthrough/cross-chain-unbond',
},
{
text: 'Orchestration Basics',
link: '/guides/orchestration/getting-started/contract-walkthrough/orchestration-basics',
}
]
},
]
},
{
text: 'Build',
items: [
Expand Down Expand Up @@ -82,12 +117,6 @@ export const nav = [
collapsed: true,
items: [],
},
{
text: 'Orchestration',
link: '/guides/orchestration/',
collapsed: true,
items: [],
},
{
text: 'Zoe Smart Contract Framework',
link: '/guides/zoe/',
Expand Down
6 changes: 6 additions & 0 deletions main/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ features:
details: The Agoric chain, tech stack, and ecosystem
link: /what-is-agoric

- icon:
src: '/orchestrate.svg'
title: Orchestrate
details: Build and manage multi-chain operations with the Orchestration API
link: /guides/orchestration/

- icon: 🧑‍🎓️
title: Learn
details: Learn how Smart Contracts work on Agoric Platform
Expand Down
67 changes: 67 additions & 0 deletions main/public/orchestrate.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading