put <Support> on homepage

This commit is contained in:
Andrea Vos 2021-01-27 17:24:25 +01:00
parent 77eff4c5e1
commit 76ff7a37ad
3 changed files with 19 additions and 15 deletions

17
components/Support.vue Normal file
View File

@ -0,0 +1,17 @@
<template>
<section>
<h3>
<Icon v="people-carry"/>
<T>support.header</T>
</h3>
<p><T>support.description</T></p>
<p>
<a v-for="link in config.support.links" :key="link.url"
:href="link.url" target="_blank" rel="noopener"
class="btn btn-outline-primary border m-1">
<Icon :v="link.icon" :set="link.iconSet || 'l'"/>
{{link.headline}}
</a>
</p>
</section>
</template>

View File

@ -28,21 +28,7 @@
</small>
</section>
<section>
<h3>
<Icon v="people-carry"/>
<T>support.header</T>
</h3>
<p><T>support.description</T></p>
<p>
<a v-for="link in config.support.links" :key="link.url"
:href="link.url" target="_blank" rel="noopener"
class="btn btn-outline-primary border m-1">
<Icon :v="link.icon" :set="link.iconSet || 'l'"/>
{{link.headline}}
</a>
</p>
</section>
<Support/>
</div>
</template>

View File

@ -212,6 +212,7 @@
<Media/>
<Socials/>
<LanguageVersions/>
<Support/>
</section>
</div>
</template>