summaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-04-28 15:28:17 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-04-28 15:28:17 +0300
commit6b73ccbfeb4dd2bab907e6226e0655de99a56e13 (patch)
treea150912d797c0be22a8bdf4950cd1ad1c8d8ee73 /src/views
parent3f9ce4eaf391733e8769caec8da84302c012b21e (diff)
downloadwebui-vue-6b73ccbfeb4dd2bab907e6226e0655de99a56e13.tar.xz
restyled header and add subheader
Diffstat (limited to 'src/views')
-rw-r--r--src/views/InformationAndFAQ/InformationAndFAQ.vue9
-rw-r--r--src/views/InformationAndFAQ/index.js1
-rw-r--r--src/views/Support/Support.vue9
-rw-r--r--src/views/Support/index.js1
4 files changed, 20 insertions, 0 deletions
diff --git a/src/views/InformationAndFAQ/InformationAndFAQ.vue b/src/views/InformationAndFAQ/InformationAndFAQ.vue
new file mode 100644
index 00000000..ede7b3d8
--- /dev/null
+++ b/src/views/InformationAndFAQ/InformationAndFAQ.vue
@@ -0,0 +1,9 @@
+<template>
+ <span>This Page (Information And FAQ) In develop</span>
+</template>
+
+<script>
+export default {
+ name: 'InformationAndFAQ',
+};
+</script>
diff --git a/src/views/InformationAndFAQ/index.js b/src/views/InformationAndFAQ/index.js
new file mode 100644
index 00000000..6bbeaba6
--- /dev/null
+++ b/src/views/InformationAndFAQ/index.js
@@ -0,0 +1 @@
+export { default } from './InformationAndFAQ.vue';
diff --git a/src/views/Support/Support.vue b/src/views/Support/Support.vue
new file mode 100644
index 00000000..a23ad55f
--- /dev/null
+++ b/src/views/Support/Support.vue
@@ -0,0 +1,9 @@
+<template>
+ <span>This Page (Support) In develop</span>
+</template>
+
+<script>
+export default {
+ name: 'Support',
+};
+</script>
diff --git a/src/views/Support/index.js b/src/views/Support/index.js
new file mode 100644
index 00000000..80b31621
--- /dev/null
+++ b/src/views/Support/index.js
@@ -0,0 +1 @@
+export { default } from './Support.vue';