22 lines
565 B
Vue
22 lines
565 B
Vue
<script setup lang="ts">
|
|
import PureCitySvg from '~/assets/pure-city.svg'
|
|
</script>
|
|
|
|
<template>
|
|
<nav class="py-8 w-full border-b-2 bg-white">
|
|
<div class="flex gap-8 items-center col-w mx-auto px-4 md:px-16">
|
|
<img
|
|
:src="PureCitySvg"
|
|
alt="Логотип"
|
|
class="h-16"
|
|
>
|
|
<div class="flex flex-col">
|
|
<h1 class="font-semibold text-5xl">
|
|
Чистый город
|
|
</h1>
|
|
<h2 class="text-lime-500 ml-4">Клининговая компания</h2>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</template>
|