chore: template configuration

This commit is contained in:
2025-12-20 16:37:24 +01:00
parent 5244110985
commit 978df91b6e
4 changed files with 9 additions and 86 deletions
+3 -19
View File
@@ -1,7 +1,6 @@
<script setup lang="ts">
import { ref, onMounted } from "vue";
import LucideIcon from "./components/LucideIcon.vue";
import CustomButton from "./components/CustomButton.vue";
const visible = ref<boolean>(false);
@@ -14,33 +13,18 @@ onMounted(() => {
<template>
<main :style="{ display: visible ? 'inherit' : 'none' }">
<!-- TODO: 1. rename app -->
<h1>
<LucideIcon name="package" />
Vue-Boilerplate
<LucideIcon name="disc-3" />
Coverify
</h1>
<br />
<p>
Fill this page with <i>whatever</i> you're going to develop.
<br />
<b>Then enjoy!</b>
</p>
<CustomButton>
<LucideIcon name="square-arrow-right" /> This is a sample button yay
</CustomButton>
<br />
<hr />
<small class="footer">
<LucideIcon name="at-sign" />
&nbsp;
<a href="https://github.com/klemek" target="_blank">klemek</a>
-
<!-- TODO: 1. rename app -->
<LucideIcon name="github" />
&nbsp;
<a href="https://github.com/klemek/vue-boilerplate" target="_blank">
Repository
</a>
<a href="https://github.com/klemek/coverify" target="_blank">Repository</a>
- 2025
</small>
</main>