Files
Homer/src/components/GetStarted.vue
Bastien Wirtz a40acb2fee lint fix
2024-11-13 12:12:15 +01:00

31 lines
668 B
Vue

<template>
<article>
<div class="m-6 has-text-centered py-6 title">
<p class="is-size-5 mb-2">No configuration found!</p>
<p>Check out the documentation to start building your dashboard.</p>
<p>
<a
class="button is-primary mt-5 has-text-weight-bold"
href="https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md#configuration"
target="_blank"
>
Get started
</a>
</p>
</div>
</article>
</template>
<script>
export default {
name: "GetStarted",
};
</script>
<style lang="scss" scoped>
body #app a {
font-weight: 900;
color: #ffffff;
}
</style>