Skip to content

Commit

Permalink
fix: update link (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuangs authored May 11, 2024
1 parent 94bba0e commit ac7172d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 14 deletions.
10 changes: 8 additions & 2 deletions packages/web/src/pages/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@
:data="item"
></document-link>
<div class="link-more text-body1 text-grey-5">
Visit <span>Terminus developer community</span> for more documents
Visit
<a
href="https://docs.jointerminus.com/overview/introduction/what-is-terminus.html"
>docs.jointerminus.com</a
>
for more information.
</div>
</div>
</div>
Expand Down Expand Up @@ -245,8 +250,9 @@ async function upload_dev_file(
.link-more {
margin-top: 32px;
span {
a {
color: #00967d;
text-decoration: none;
}
}
}
Expand Down
24 changes: 12 additions & 12 deletions packages/web/src/stores/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,33 +61,33 @@ export const useMenuStore = defineStore('menu', {
documentList: [
{
id: 1,
message: 'Quick start',
link: 'https://www.baidu.com/'
message: 'DevBox Tutorial',
link: 'https://docs.jointerminus.com/developer/develop/tutorial/devbox.html'
},
{
id: 2,
message: 'Application chart specification guideline',
link: 'https://www.baidu.com/'
message: 'Introduction to Basic Concepts of Terminus Application',
link: 'https://docs.jointerminus.com/overview/terminus/application.html'
},
{
id: 3,
message: 'Learn about submission process',
link: 'https://www.baidu.com/'
message: 'Learn about Terminus Application Chart',
link: 'https://docs.jointerminus.com/developer/develop/package/chart.html'
},
{
id: 4,
message: 'How to submit application to the App Market',
link: 'https://www.baidu.com/'
message: 'Configuration Guideline for TerminusManifest',
link: 'https://docs.jointerminus.com/developer/develop/package/manifest.html'
},
{
id: 5,
message: 'How to manage and maintain application in the App Market',
link: 'https://www.baidu.com/'
message: 'Terminus Market protocol overview',
link: 'https://docs.jointerminus.com/overview/protocol/market.html'
},
{
id: 6,
message: 'About helm charts format',
link: 'https://www.baidu.com/'
message: 'How to sbmit an application to the Terminus Market',
link: 'https://docs.jointerminus.com/developer/develop/submit/'
}
]
} as DataState;
Expand Down

0 comments on commit ac7172d

Please sign in to comment.