Skip to content

Commit ac7172d

Browse files
authored
fix: update link (#1)
1 parent 94bba0e commit ac7172d

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

packages/web/src/pages/HomePage.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,12 @@
7474
:data="item"
7575
></document-link>
7676
<div class="link-more text-body1 text-grey-5">
77-
Visit <span>Terminus developer community</span> for more documents
77+
Visit
78+
<a
79+
href="https://docs.jointerminus.com/overview/introduction/what-is-terminus.html"
80+
>docs.jointerminus.com</a
81+
>
82+
for more information.
7883
</div>
7984
</div>
8085
</div>
@@ -245,8 +250,9 @@ async function upload_dev_file(
245250
246251
.link-more {
247252
margin-top: 32px;
248-
span {
253+
a {
249254
color: #00967d;
255+
text-decoration: none;
250256
}
251257
}
252258
}

packages/web/src/stores/menu.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -61,33 +61,33 @@ export const useMenuStore = defineStore('menu', {
6161
documentList: [
6262
{
6363
id: 1,
64-
message: 'Quick start',
65-
link: 'https://www.baidu.com/'
64+
message: 'DevBox Tutorial',
65+
link: 'https://docs.jointerminus.com/developer/develop/tutorial/devbox.html'
6666
},
6767
{
6868
id: 2,
69-
message: 'Application chart specification guideline',
70-
link: 'https://www.baidu.com/'
69+
message: 'Introduction to Basic Concepts of Terminus Application',
70+
link: 'https://docs.jointerminus.com/overview/terminus/application.html'
7171
},
7272
{
7373
id: 3,
74-
message: 'Learn about submission process',
75-
link: 'https://www.baidu.com/'
74+
message: 'Learn about Terminus Application Chart',
75+
link: 'https://docs.jointerminus.com/developer/develop/package/chart.html'
7676
},
7777
{
7878
id: 4,
79-
message: 'How to submit application to the App Market',
80-
link: 'https://www.baidu.com/'
79+
message: 'Configuration Guideline for TerminusManifest',
80+
link: 'https://docs.jointerminus.com/developer/develop/package/manifest.html'
8181
},
8282
{
8383
id: 5,
84-
message: 'How to manage and maintain application in the App Market',
85-
link: 'https://www.baidu.com/'
84+
message: 'Terminus Market protocol overview',
85+
link: 'https://docs.jointerminus.com/overview/protocol/market.html'
8686
},
8787
{
8888
id: 6,
89-
message: 'About helm charts format',
90-
link: 'https://www.baidu.com/'
89+
message: 'How to sbmit an application to the Terminus Market',
90+
link: 'https://docs.jointerminus.com/developer/develop/submit/'
9191
}
9292
]
9393
} as DataState;

0 commit comments

Comments
 (0)