Working on service page

This commit is contained in:
2021-08-18 19:26:31 +02:00
parent b67a0d1398
commit ec668bd839
7 changed files with 116 additions and 1 deletions

View File

@@ -2,6 +2,24 @@
<main class="flex flex-col items-center px-4 xl:px-32">
<PageTitle title="part.services" />
<p class="text-justify text-gray-700 dark:text-gray-400 text-xl my-8">{{ $t('services.description') }}</p>
<div class="flex flex-col justify-around items-center py-10 w-full">
<div class="flex flex-col lg:(flex-row justify-around mb-16) w-full">
<ServicePart>
<GlassIcon />
</ServicePart>
<ServicePart>
<NetworkIcon />
</ServicePart>
</div>
<div class="flex flex-col lg:(flex-row justify-around) w-full">
<ServicePart>
<SupportIcon />
</ServicePart>
<ServicePart>
<CodeIcon />
</ServicePart>
</div>
</div>
</main>
</template>