Skip to content

Commit

Permalink
remove version title logo
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasferreiralimax committed Jul 1, 2024
1 parent 29042f8 commit 80b86e2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<script setup lang="ts">
import { ref, computed, watch } from 'vue';
import pkg from '../package.json';
// import VueTechsLogos from 'vue-techs-logos'
import VueTechsLogos from './components/VueTechsLogos.vue'
import ModalInstall from './components/ModalInstall.vue'
import Footer from './components/Footer.vue'
import DarkModeVue from 'darkmode-vue'
import techs from './techs'
const appVersion: string = pkg.version;
const search = ref('');
const modalInstall = ref(false);
const filteredArray = computed(() =>
Expand Down Expand Up @@ -39,7 +37,7 @@ watch(modalInstall, (newValue) => {
<DarkModeVue class="darkmode-button" :hiddenLabel="true" />
<a class="logo" href="https://www.npmjs.com/package/vue-techs-logos" target="_blank">
<img alt="Vue logo" class="logo" src="./assets/logo.svg?url" width="80" height="80" />
<h1>{{ `vue-techs-logos@${appVersion}` }}</h1>
<h1>vue-techs-logos</h1>
</a href="">
</header>
<main class="content">
Expand Down

0 comments on commit 80b86e2

Please sign in to comment.