mirror of
https://github.com/bastienwirtz/homer.git
synced 2026-01-22 23:32:10 +01:00
31 lines
668 B
Vue
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>
|