This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
/
sidebarsDapps.js
52 lines (52 loc) · 1.56 KB
/
sidebarsDapps.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
module.exports = {
mySidebar: [
{
type: 'link',
label: 'Welcome',
href: 'https://developers.stellar.org/docs/learn/migrate/introduction-to-solidity-and-rust',
},
{
type: 'link',
label: 'Dashboard',
href: 'https://developers.stellar.org/docs/learn/interactive/dapps/dashboard',
},
{
type: 'link',
label: 'Scaffold Soroban',
href: 'https://developers.stellar.org/docs/learn/interactive/dapps/scaffold-soroban',
},
{
type: 'category',
label: 'Guides',
items: [
{
type: 'link',
label: 'Docker',
href: 'https://developers.stellar.org/docs/smart-contracts/guides/dapps/docker'
},
{
type: 'link',
label: 'Initialization',
href: 'https://developers.stellar.org/docs/smart-contracts/guides/dapps/initialization'
},
{
type: 'link',
label: 'React',
href: 'https://developers.stellar.org/docs/smart-contracts/guides/dapps/react'
},
{
type: 'link',
label: 'Smart Contracts',
href: 'https://developers.stellar.org/docs/learn/interactive/dapps/challenges/challenge-0-crowdfund'
},
{
type: 'link',
label: 'Wallets',
href: 'https://developers.stellar.org/docs/smart-contracts/guides/freighter/integrate-freighter-react'
},
],
collapsible: true, // The category can be collapsed.
collapsed: true, // Initially, the category will be collapsed.
},
],
};