53 lines
1.7 KiB
Vue
53 lines
1.7 KiB
Vue
<script setup lang="ts">
|
|
import ServiceItem from './ServiceItem.vue'
|
|
import IconHomesite from './icons/IconHomesite.vue'
|
|
import IconItSupport from './icons/IconItSupport.vue'
|
|
import IconLinux from './icons/IconLinux.vue'
|
|
import IconRepair from './icons/IconRepair.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<ServiceItem>
|
|
<template #icon>
|
|
<IconHomesite />
|
|
</template>
|
|
<template #heading>Kotisivut</template>
|
|
|
|
Tarvitsetko kotisivut yrityksellesi tai yhdistyksellesi? Suunnittelemme ja toteutamme
|
|
responsiiviset ja käyttäjäystävälliset kotisivut, jotka vastaavat tarpeitasi ja edistävät
|
|
näkyvyyttäsi verkossa.
|
|
</ServiceItem>
|
|
|
|
<ServiceItem>
|
|
<template #icon>
|
|
<IconItSupport />
|
|
</template>
|
|
<template #heading>IT Tukea</template>
|
|
|
|
Apua arjen haasteisiin tietokoneiden, ohjelmistojen ja verkkojen kanssa. Mikään pulma ei ole
|
|
liian pieni tai suuri! Kysymisestä emme laskuta mitään, joten ota rohkeasti yhteyttä!
|
|
</ServiceItem>
|
|
|
|
<ServiceItem>
|
|
<template #icon>
|
|
<IconRepair />
|
|
</template>
|
|
<template #heading>Laitehuollot</template>
|
|
|
|
Tarjoamme luotettavaa ja nopeaa huoltopalvelua tietokoneille, älypuhelimille ja tableteille.
|
|
Vianmääritys ja korjaukset suoritetaan ammattitaidolla, jotta laitteesi toimii taas
|
|
moitteettomasti.
|
|
</ServiceItem>
|
|
|
|
<ServiceItem>
|
|
<template #icon>
|
|
<IconLinux />
|
|
</template>
|
|
<template #heading>Linux</template>
|
|
|
|
Vapaat ohjelmistot ja avoin lähdekoodi on lähellä sydäntämme. Tarjoamme Linux-käyttöjärjestelmä
|
|
tukea ja asennuksia huokeasti. Mikäli vaihdat pois Windowsista, saat Linux asennuksen
|
|
ilmaiseksi!
|
|
</ServiceItem>
|
|
</template>
|