33 lines
972 B
Vue
33 lines
972 B
Vue
<template>
|
|
<div class="seoPage">
|
|
<HeroBox
|
|
image="/uploads/DML_Service_Header_SEO_b11ae8940a.webp"
|
|
:aria-label="$t('pages.services.seo.hero.ariaLabel')"
|
|
:content="{
|
|
headline1: 'pages.services.seo.hero.headline1',
|
|
headline2: 'pages.services.seo.hero.headline2',
|
|
headline3: 'pages.services.seo.hero.headline3'
|
|
}"
|
|
:dark-background="true"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
definePageMeta({
|
|
alias: [
|
|
'/leistungen/suchmaschinenoptimierung', // Deutsch
|
|
'/services/search-engine-optimization', // Englisch
|
|
'/services/optimisation-pour-moteurs', // Französisch
|
|
'/servizi/ottimizzazione-motori-di-ricerca',// Italienisch
|
|
'/servicios/optimizacion-motores-busqueda', // Spanisch
|
|
'/hizmetler/arama-motoru-optimizasyonu' // Türkisch
|
|
],
|
|
name: 'services-seo'
|
|
})
|
|
|
|
</script>
|
|
|
|
<style lang="sass">
|
|
|
|
</style> |