Skip to content

Commit 5a02611

Browse files
authored
Restructure (#188)
* Update documentation and .gitignore - Revised sidebar configuration for improved readability and consistency in quotes. - Enhanced the build section with a new 'Environment Setup' guide for local development. - Updated the 'Quick Start' guide to clarify SDK usage and local environment setup. * remove outdated docs * remove sdk-1 and user guides * Merge tutorials and build sections * Fix links * Rename schema -> metadata format
1 parent 05fd3bf commit 5a02611

112 files changed

Lines changed: 2877 additions & 12612 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ dist
88
package-lock.json
99
.vscode
1010
.DS_Store
11+
12+
# Substrate proxy
13+
substrate-proxy
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 136 additions & 135 deletions
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.

docs/tutorials/evm/using-sol-interfaces.md renamed to archive/using-sol-interfaces.md

Lines changed: 93 additions & 93 deletions
Large diffs are not rendered by default.

docs/.vuepress/components/HomePageSections.vue

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
11
<template>
22
<div :class="$style.welcome">
3-
<h1>Welcome to the <span style="white-space: nowrap">Unique Network</span><br>documentation</h1>
3+
<h1>
4+
Welcome to the <span style="white-space: nowrap">Unique Network</span
5+
><br />documentation
6+
</h1>
47
<p>Take the first step by choosing your path</p>
58
</div>
69
<div :class="$style.root">
710
<div v-for="item in menu" :class="$style.item">
811
<RouterLink :to="item.path">
9-
<img :src="withBase(`/images/icons/${item.iconName}.svg`)" :class="$style.icon"/>
10-
<div :class="$style.title" v-html="item.title"/>
11-
<div :class="$style.subtitle" v-html="item.subtitle"/>
12+
<img
13+
:src="withBase(`/images/icons/${item.iconName}.svg`)"
14+
:class="$style.icon"
15+
/>
16+
<div :class="$style.title" v-html="item.title" />
17+
<div :class="$style.subtitle" v-html="item.subtitle" />
1218
</RouterLink>
1319
</div>
1420
</div>
1521
</template>
1622

1723
<script setup lang="ts">
18-
import {withBase} from '@vuepress/client';
24+
import { withBase } from "@vuepress/client";
1925
2026
interface MenuItem {
21-
title: string
22-
path: string
23-
subtitle: string
24-
iconName: string
27+
title: string;
28+
path: string;
29+
subtitle: string;
30+
iconName: string;
2531
}
2632
2733
const menu: MenuItem[] = [
2834
{
29-
title: 'Learn',
30-
path: '/about',
31-
subtitle: 'The basic concepts and what can you do',
32-
iconName: 'Palette',
35+
title: "Learn",
36+
path: "/about",
37+
subtitle: "The basic concepts and what can you do",
38+
iconName: "Palette",
3339
},
3440
{
35-
title: 'Build',
36-
path: '/build',
37-
subtitle: 'Build applications using JavaScript SDK and EVM tools',
38-
iconName: 'Monitor',
39-
},
40-
{
41-
title: 'Tutorials',
42-
path: '/tutorials',
43-
subtitle: 'Learn with Real-life Examples',
44-
iconName: 'MonitorPlay',
41+
title: "Build",
42+
path: "/build",
43+
subtitle: "Build applications using JavaScript SDK and EVM tools",
44+
iconName: "Monitor",
4545
},
4646
];
4747
</script>
@@ -71,7 +71,6 @@ a {
7171
min-height: 35vh;
7272
}
7373
74-
7574
.welcome h1 {
7675
font-size: 48px;
7776
font-weight: bold;

0 commit comments

Comments
 (0)