This commit is contained in:
2024-09-22 16:26:48 +03:00
parent 820aff3d83
commit f6d3e5eb09
10 changed files with 95 additions and 11 deletions

View File

@@ -3,15 +3,17 @@ import PureCitySvg from '~/assets/pure-city.svg'
</script>
<template>
<nav class="flex flex-col gap-16 justify-center items-center py-8 px-4 w-full border-b-2 bg-white">
<img
:src="PureCitySvg"
alt="Логотип"
class="w-64"
>
<h1 class="font-semibold text-6xl">
Чистый город
</h1>
<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"
>
<h1 class="font-semibold text-5xl">
Чистый город
</h1>
</div>
</nav>
</template>