21 lines
405 B
Vue
21 lines
405 B
Vue
<script setup lang="ts">
|
|
import PureCitySvg from '~/assets/pure-city.svg'
|
|
</script>
|
|
|
|
<template>
|
|
<nav class="flex flex-col gap-16 justify-center items-center p-4 pt-8 w-full">
|
|
<img
|
|
:src="PureCitySvg"
|
|
alt="Логотип"
|
|
class="w-64"
|
|
>
|
|
<h1 class="font-semibold text-5xl">
|
|
Чистый город
|
|
</h1>
|
|
</nav>
|
|
</template>
|
|
|
|
<style scoped lang="postcss">
|
|
|
|
</style>
|