put <Support> on homepage
This commit is contained in:
parent
3a04a49193
commit
cc37da27a1
|
@ -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>
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -212,6 +212,7 @@
|
|||
<Media/>
|
||||
<Socials/>
|
||||
<LanguageVersions/>
|
||||
<Support/>
|
||||
</section>
|
||||
</div>
|
||||
</template>
|
||||
|
|
Reference in New Issue