-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
96 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,77 @@ | ||
<template> | ||
<v-container> | ||
<h2>CFM Help Center</h2> | ||
<br /> | ||
<v-row> | ||
<v-col v-for="(variant, i) in variants" :key="i" cols="6" md="3"> | ||
<v-card | ||
class="mx-auto custom-size" | ||
max-width="344" | ||
:href="variant.url" | ||
target="_blank" | ||
rel="noopener" | ||
variant="tonal" | ||
> | ||
<v-card-title> | ||
<v-icon left>{{ variant.icon }}</v-icon> | ||
{{ variant.title }} | ||
</v-card-title> | ||
<v-card-text>{{ variant.content }}</v-card-text> | ||
<template v-slot:append> | ||
<v-icon icon="mdi-open-in-new"></v-icon> | ||
</template> | ||
</v-card> | ||
</v-col> | ||
</v-row> | ||
<br /> | ||
|
||
<h3>Contact Support</h3> | ||
<p> | ||
If you need further assistance, please contact your local Seagate | ||
representative or our support team. | ||
</p> | ||
<v-icon color="#6ebe4a">mdi-email-outline</v-icon> | ||
Email: | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</v-container> | ||
</template> | ||
|
||
<style scoped> | ||
.custom-size { | ||
height: 150px; | ||
} | ||
</style> | ||
|
||
<script> | ||
export default { | ||
data() { | ||
return { | ||
variants: [ | ||
{ | ||
id: 1, | ||
title: "WebUI User Guide", | ||
content: | ||
"For instructions on our product, please refer to the CFM User Guide.", | ||
url: "https://github.com/Seagate/cfm/wiki/WebUI-User-Guide", | ||
icon: "mdi-book-open-page-variant", | ||
}, | ||
{ | ||
id: 2, | ||
title: "CFM GitHub Repository", | ||
content: "For more details, please visit our GitHub repository", | ||
url: "https://github.com/Seagate/cfm", | ||
icon: "mdi-github", | ||
}, | ||
{ | ||
id: 3, | ||
title: "Trouble Shooting", | ||
content: | ||
"For solutions to common issues, please see our GitHub wiki page.", | ||
url: "https://github.com/Seagate/cfm/wiki", | ||
icon: "mdi-tools", | ||
}, | ||
], | ||
}; | ||
}, | ||
}; | ||
</script> |
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
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
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,8 @@ | ||
<!-- Copyright (c) 2024 Seagate Technology LLC and/or its Affiliates --> | ||
<template> | ||
<Help /> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
import Help from '@/components/Help/Help.vue' | ||
</script> |