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

@@ -1,5 +1,6 @@
<script setup lang="ts">
import Service from "~/components/services/service.vue";
import PureCitySvg from '~/assets/pure-city.svg'
type TService = {
name: string
@@ -49,7 +50,10 @@ const outdoorServices = [
<template>
<section class="py-16 bg-slate-100">
<h2 class="text-4xl font-semibold col-w mx-auto mb-8 px-4 md:px-16">Услуги</h2>
<h2 class="text-4xl font-semibold col-w mx-auto mb-8 px-4 md:px-16 flex items-center gap-8">
<img :src="PureCitySvg" class="h-16">
Услуги
</h2>
<div class="col-w mx-auto px-4 md:px-16 gap-2 services__grid mb-16">
<service