This commit is contained in:
2024-09-22 18:35:42 +03:00
parent d26c83842e
commit 7e18ef254f
5 changed files with 25 additions and 19 deletions

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
useSeoMeta({
title: 'Чистый город - клининговая компания',
description: 'Профессиональные комплексные услуги по уборке помещений для частных и корпоративных клиентов.'
})
</script>

View File

@@ -10,18 +10,18 @@ defineProps<{
<div class="py-4 px-6 text-center flex-grow">
{{ name }}
</div>
<!-- <div-->
<!-- class="px-4 flex items-center justify-center"-->
<!-- :class="{-->
<!-- 'bg-yellow-400': type === 'indoor',-->
<!-- 'bg-lime-500': type === 'outdoor'-->
<!-- }"-->
<!-- >-->
<!-- <Icon-->
<!-- :name="type === 'indoor' ? 'bi:house' : 'bi:tree'"-->
<!-- class="text-white"-->
<!-- ></Icon>-->
<!-- </div>-->
<div
class="px-4 flex items-center justify-center"
:class="{
'bg-yellow-400': type === 'indoor',
'bg-lime-500': type === 'outdoor'
}"
>
<Icon
:name="type === 'indoor' ? 'bi:house' : 'bi:tree'"
class="text-white"
></Icon>
</div>
</div>
</template>

View File

@@ -57,16 +57,16 @@ const outdoorServices = [
<div class="col-w mx-auto px-4 md:px-16 gap-2 services__grid mb-16">
<service
v-for="s in indoorServices"
:key="s.name"
:name="s.name"
:type="s.type"
v-for="s in outdoorServices"
:key="s.name"
:name="s.name"
:type="s.type"
></service>
</div>
<div class="col-w mx-auto px-4 md:px-16 gap-2 services__grid">
<service
v-for="s in outdoorServices"
v-for="s in indoorServices"
:key="s.name"
:name="s.name"
:type="s.type"

View File

@@ -2,5 +2,10 @@
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
devtools: { enabled: true },
modules: ['@nuxt/icon', '@nuxtjs/tailwindcss', '@nuxt/image']
})
modules: ['@nuxt/icon', '@nuxtjs/tailwindcss', '@nuxt/image'],
app: {
head: {
link: [{ rel: 'icon', type: 'image/png', href: "/favicon.png" }]
}
},
})

BIN
public/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB