presun obrazkov z /public do /assets/images,

prelinkovanie obrazkov v About.vue
This commit is contained in:
2025-05-15 11:42:49 +02:00
parent 5250a6d279
commit dfa51da14b
5 changed files with 14 additions and 13 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 208 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 949 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>

After

Width:  |  Height:  |  Size: 496 B

View File

@ -12,21 +12,21 @@
<div>
Backend thanks for <br />
<a href="https://www.php.net" target="_blank">
<img src="/php-power-micro.png" height="20" alt="" /> <br />
<img :src="php_power_micro" height="20" alt="" /> <br />
PHP 8.2
</a>
</div>
<div>
Database thanks for <br>
<a href="https://www.sqlite.org" target="_blank">
<img src="/SQLite370.svg" height="20" alt="" /> <br>
<img :src="sqlite" height="20" alt="" /> <br>
SQLite
</a>
</div>
<div>
Frontend thanks for <br>
<a href="https://vuejs.org" target="_blank">
<img src="/vue.svg" height="20" alt="" /> <br>
<img :src="vue" height="20" alt="" /> <br>
Vue 3
</a>
</div>
@ -39,18 +39,19 @@
>
</p>
<h2>Diagram stavov pre BUG</h2>
<img src="/FlowDiagram.drawio.svg" alt="" width="90%" />
<img :src="flowdiagram" alt="" width="90%" />
</div>
</div>
</template>
<script>
export default {
data() {
return {
version: __APP_VERSION__,
build: __BUILD_DATE__,
};
},
};
<script setup>
import { ref } from 'vue';
import php_power_micro from '../assets/images/php-power-micro.png';
import sqlite from '../assets/images/SQLite370.svg';
import vue from '../assets/images/vue.svg';
import flowdiagram from '../assets/images/FlowDiagram.drawio.svg';
const version = ref(__APP_VERSION__);
const build = ref(__BUILD_DATE__);
</script>