Update logo

This commit is contained in:
Kamil Niemczycki 2021-04-08 09:43:46 +02:00
parent fb13c57c51
commit bf18b7c3fc
3 changed files with 6 additions and 1 deletions

BIN
public/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="home"> <div class="home">
<img alt="KamilCraft.com logo" src="https://kamilcraft.com/assets/img/logo.png"> <img alt="KamilCraft.com logo" :src="`${publicPath}assets/logo.png`">
<HelloWorld/> <HelloWorld/>
</div> </div>
</template> </template>
@ -10,6 +10,11 @@ import HelloWorld from '@/components/HomePageElement.vue'
export default { export default {
name: 'Home', name: 'Home',
data () {
return {
publicPath: process.env.BASE_URL
}
},
components: { components: {
HelloWorld HelloWorld
} }