forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
siteconfig and navconfig files added (MystenLabs#840)
- Loading branch information
Showing
2 changed files
with
328 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
{ | ||
"sideMenu": { | ||
"title": "MAIN CONCEPTS", | ||
"items": [ | ||
{ | ||
"label": "Selections", | ||
"link": "build/transactions" | ||
}, | ||
{ | ||
"label": "Dynamic properties", | ||
"link": "learn/sui-compared" | ||
}, | ||
{ | ||
"label": "Events", | ||
"link": "https://www.google.com/", | ||
"external": true | ||
} | ||
] | ||
}, | ||
"docs": { | ||
"learn": [ | ||
{ | ||
"label": "About Sui", | ||
"fileName": "learn/how-sui-works" | ||
}, | ||
{ | ||
"label": "Terminology", | ||
"fileName": "learn/how-sui-works" | ||
}, | ||
{ | ||
"label": "Why Move?", | ||
"fileName": "learn/sui-move-diffs" | ||
}, | ||
{ | ||
"label": "What Makes Sui Different?", | ||
"fileName": "learn/sui-compared" | ||
}, | ||
{ | ||
"title": "How Sui works", | ||
"items": [ | ||
{ | ||
"label": "Security", | ||
"fileName": "learn/sui-compared" | ||
}, | ||
{ | ||
"label": "Storage", | ||
"fileName": "learn/sui-compared" | ||
}, | ||
{ | ||
"label": "Limitations", | ||
"fileName": "learn/sui-compared" | ||
} | ||
] | ||
}, | ||
{ | ||
"label": "Sui White Paper", | ||
"fileName": "learn/how-sui-works" | ||
} | ||
], | ||
"build": [ | ||
{ | ||
"label": "Install", | ||
"fileName": "build/authorities" | ||
}, | ||
{ | ||
"label": "Smart Contracts with Move", | ||
"fileName": "build/move" | ||
}, | ||
{ | ||
"label": "Wallet", | ||
"fileName": "build/wallet" | ||
}, | ||
{ | ||
"label": "Objects", | ||
"fileName": "build/objects" | ||
}, | ||
{ | ||
"label": "Transactions", | ||
"fileName": "build/transactions" | ||
} | ||
], | ||
"explore": [ | ||
{ | ||
"title": "Examples", | ||
"items": [ | ||
{ | ||
"label": "Mint NFT with Additional Mutable Fields", | ||
"fileName": "build/move" | ||
}, | ||
{ | ||
"label": "Transfer, Bundle, and Wrap NFTs", | ||
"fileName": "explore/observability" | ||
}, | ||
{ | ||
"label": "Use Ethereum NFTs in Sui?", | ||
"fileName": "sui-json" | ||
} | ||
] | ||
} | ||
], | ||
|
||
"contribute": [ | ||
|
||
{ | ||
"label": "Community", | ||
"link": "https://www.google.com/", | ||
"external": true | ||
}, | ||
{ | ||
"label": "Logging", | ||
"link": "https://www.google.com/", | ||
"external": true | ||
}, | ||
{ | ||
"label": "About Mysten Labs", | ||
"link": "https://www.google.com/", | ||
"external": true | ||
}, | ||
{ | ||
"label": "Contributing to Sui", | ||
"link": "https://www.google.com/", | ||
"external": true | ||
}, | ||
{ | ||
"label": "Code of Conduct", | ||
"fileName": "contribute/code-of-conduct" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,198 @@ | ||
{ | ||
"title": "Sui Developer Portal", | ||
"tagline": "Welcome to Sui, a next generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by Move", | ||
"URL": "https://devportal-30dd0.web.app/", | ||
"baseUrl": "/", | ||
"favIcon": "/favicon2.png", | ||
"organizationName": "Mysten Labs", | ||
"projectName": "Dev Portal", | ||
|
||
"footerData": { | ||
"copyRight": "©2022 Copyright Sui. All rights reserved.", | ||
"privacyPolicy": { | ||
"label": "Privacy Policy", | ||
"link": "#" | ||
}, | ||
"terms": { | ||
"label": "Terms of Service", | ||
"link": "#" | ||
}, | ||
"menu": [{ | ||
"title": "Docs", | ||
"listItems": [{ | ||
"title": "Getting Started", | ||
"link": "/learn/sui-move-diffs/" | ||
}, | ||
{ | ||
"title": "SDK Reference", | ||
"link": "/learn/sui-move-diffs/" | ||
}, | ||
{ | ||
"title": "Prototypes", | ||
"link": "/learn/sui-move-diffs/" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "Community", | ||
"listItems": [{ | ||
"title": "Discord", | ||
"link": "https://discord.com/invite/Tcfn7UdmAc", | ||
"external": true | ||
}, | ||
{ | ||
"title": "Twiter", | ||
"link": "https://twitter.com/mysten_labs/", | ||
"external": true | ||
}, | ||
{ | ||
"title": "Forum", | ||
"link": "https://medium.com/mysten-labs/", | ||
"external": true | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "More", | ||
"listItems": [{ | ||
"title": "GitHub", | ||
"link": "https://github.com/MystenLabs", | ||
"external": true | ||
}, | ||
{ | ||
"title": "Sui.io", | ||
"link": "https://sui.io/", | ||
"external": true | ||
}, | ||
{ | ||
"title": "White Paper", | ||
"link": "#", | ||
"external": true | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"headerData": { | ||
"menu": [{ | ||
"title": "Learn", | ||
"link": "/learn/how-sui-works" | ||
}, | ||
{ | ||
"title": "Build", | ||
"link": "/build/" | ||
}, | ||
{ | ||
"title": "Explore", | ||
"link": "/explore/observability" | ||
}, | ||
{ | ||
"title": "Contribute", | ||
"link": "/contribute/code-of-conduct" | ||
}, | ||
{ | ||
"title": "Discord", | ||
"link": "https://discord.com/invite/Tcfn7UdmAc/", | ||
"external": true | ||
}, | ||
{ | ||
"title": "Github", | ||
"link": "https://github.com/MystenLabs", | ||
"external": true | ||
} | ||
] | ||
}, | ||
"HomePage": { | ||
"title": "Sui Developer Hub", | ||
"subTitle": "Welcome to Sui, a next generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by Move", | ||
"partner": { | ||
"title": "Partner Highlight", | ||
"copy" : "See how Celo uses this copy to change this copy because this copy needs to be changed but that should be an easy fix.", | ||
"cta" : { | ||
"label": "Get Started", | ||
"link": "/learn/how-sui-works", | ||
"external": false | ||
} | ||
}, | ||
"cta": [{ | ||
"name": "Getting Started", | ||
"sublist": [{ | ||
"name": "What makes Sui different? ->", | ||
"url": "/learn/sui-move-diffs/" | ||
}, | ||
{ | ||
"name": "Wallet Quick Start ->", | ||
"url": "/build/wallet/" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Learn About Sui", | ||
"sublist": [{ | ||
"name": "What makes Sui different? ->", | ||
"url": "/learn/sui-move-diffs/" | ||
}, | ||
{ | ||
"name": "Wallet Quick Start ->", | ||
"url": "/build/wallet/" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Demos", | ||
"sublist": [{ | ||
"name": "What makes Sui different? ->", | ||
"url": "/learn/sui-move-diffs/" | ||
}, | ||
{ | ||
"name": "Create a Wallet ->", | ||
"url": "/build/wallet/" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Explore Prototypes", | ||
"sublist": [{ | ||
"name": "Explore ->", | ||
"url": "/" | ||
} ] | ||
}, | ||
{ | ||
"name": "Build with Examples", | ||
"sublist": [{ | ||
"name": "Mint a Mutable NFT ->", | ||
"url": "/learn/sui-move-diffs/" | ||
}, | ||
{ | ||
"name": "Gaming-related Example ->", | ||
"url": "/build/wallet/" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Join the Community", | ||
"sublist": [{ | ||
"name": "Github", | ||
"url": "/learn/sui-move-diffs/", | ||
"external": true | ||
}, | ||
{ | ||
"name": "Discord", | ||
"url": "/build/wallet/", | ||
"external": true | ||
}, | ||
{ | ||
"name": "Twitter", | ||
"url": "/build/wallet/", | ||
"external": true | ||
}, | ||
{ | ||
"name": "Medium", | ||
"url": "/build/wallet/", | ||
"external": true | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |