aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/GetStarted.vue
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-03-11 22:47:26 +0100
committerBastien Wirtz <bastien.wirtz@gmail.com>2022-03-11 22:47:26 +0100
commitf3980069351ec91bea1999e5efff5c343a808706 (patch)
treee86760449a59c12d157f5cb5af55523ceff25d86 /src/components/GetStarted.vue
parentdb2a2af3a4664366257957400b9eaadf795808c2 (diff)
downloadhomer-f3980069351ec91bea1999e5efff5c343a808706.tar.gz
homer-f3980069351ec91bea1999e5efff5c343a808706.tar.zst
homer-f3980069351ec91bea1999e5efff5c343a808706.zip
Add a get started link when no configuration is found
Diffstat (limited to 'src/components/GetStarted.vue')
-rw-r--r--src/components/GetStarted.vue35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/components/GetStarted.vue b/src/components/GetStarted.vue
new file mode 100644
index 0000000..dcabc02
--- /dev/null
+++ b/src/components/GetStarted.vue
@@ -0,0 +1,35 @@
1<template>
2 <article>
3 <div class="m-6 has-text-centered py-6">
4 <p class="is-size-5 mb-0">No configured service found!</p>
5 <p>Check out the documentation to start building your Homer dashboard.</p>
6 <p>
7 <a
8 class="button is-primary mt-5 has-text-weight-bold"
9 href="https://github.com/bastienwirtz/homer/blob/main/README.md#getting-started"
10 target="_blank"
11 >
12 Get started
13 </a>
14 </p>
15 </div>
16 </article>
17</template>
18
19<script>
20export default {
21 name: "GetStarted",
22};
23</script>
24
25<style lang="scss" scoped>
26p {
27 color: #4a4a4a;
28}
29
30body #app a {
31 font-weight: 900;
32 color: #ffffff;
33 font-family: "Lato", sans-serif;
34}
35</style>