2022-03-22 15:51:26 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
2023-11-09 17:01:13 +00:00
|
|
|
<img
|
|
|
|
src="~/assets/logo.svg"
|
|
|
|
class="h-20 mb-4"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
src="/public.svg"
|
|
|
|
class="h-20 mb-4"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
:src="logo"
|
|
|
|
class="h-20 mb-4"
|
|
|
|
>
|
2022-03-22 15:51:26 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import logo from '~/assets/logo.svg'
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#__nuxt {
|
|
|
|
background-image: url('~/assets/logo.svg');
|
2022-09-10 13:57:16 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: bottom right;
|
2022-06-10 15:17:11 +00:00
|
|
|
@font-face {
|
|
|
|
src: url("/public.svg") format("woff2");
|
|
|
|
}
|
2022-03-22 15:51:26 +00:00
|
|
|
}
|
|
|
|
body {
|
|
|
|
background-image: url('/public.svg');
|
2022-09-10 13:57:16 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: top;
|
2022-06-10 15:17:11 +00:00
|
|
|
@font-face {
|
|
|
|
src: url('/public.svg') format('woff2');
|
|
|
|
}
|
2022-03-22 15:51:26 +00:00
|
|
|
}
|
|
|
|
</style>
|