2020-09-23 12:16:56 -07:00
|
|
|
<template>
|
2020-12-11 11:37:04 -08:00
|
|
|
<div>
|
2020-09-23 12:16:56 -07:00
|
|
|
<h2>
|
|
|
|
<Icon v="comment-alt-smile"/>
|
2020-09-28 08:51:26 -07:00
|
|
|
<T>contact.header</T>
|
2020-09-23 12:16:56 -07:00
|
|
|
</h2>
|
|
|
|
|
2020-10-10 13:24:11 -07:00
|
|
|
<section>
|
2021-10-16 09:42:35 -07:00
|
|
|
<nuxt-link v-if="config.faq.enabled" :to="`/${config.faq.route}`"
|
|
|
|
class="btn btn-outline-primary border m-1"
|
|
|
|
>
|
|
|
|
<Icon v="map-marker-question"/>
|
|
|
|
<T>faq.header</T>
|
|
|
|
</nuxt-link>
|
2021-12-16 04:10:54 -08:00
|
|
|
<a v-for="link in links" :key="link.url"
|
2021-10-16 09:42:35 -07:00
|
|
|
: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}}
|
2020-10-10 13:24:11 -07:00
|
|
|
</a>
|
2020-09-23 12:16:56 -07:00
|
|
|
</section>
|
2020-09-24 12:38:15 -07:00
|
|
|
|
2021-04-13 12:14:24 -07:00
|
|
|
<section class="small">
|
2021-10-16 09:38:23 -07:00
|
|
|
<p v-if="$te('contact.faq')">
|
|
|
|
<Icon v="map-marker-question"/>
|
|
|
|
<T>contact.faq</T>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p v-if="$te('contact.technical')">
|
2021-10-14 05:44:13 -07:00
|
|
|
<Icon v="cogs"/>
|
|
|
|
<T>contact.technical</T>
|
|
|
|
</p>
|
|
|
|
|
2021-04-13 12:14:24 -07:00
|
|
|
<p>
|
|
|
|
<Icon v="language"/>
|
|
|
|
<T>localise.long</T>
|
2022-01-26 07:28:08 -08:00
|
|
|
<LocaleLink locale="en" link="/new-version">
|
2021-04-13 12:14:24 -07:00
|
|
|
<T>localise.longLink</T>
|
|
|
|
</LocaleLink>
|
|
|
|
</p>
|
|
|
|
|
2021-10-16 09:38:23 -07:00
|
|
|
<p v-if="$te('contact.quote')">
|
2021-04-13 12:14:24 -07:00
|
|
|
<Icon v="quote-right"/>
|
|
|
|
<T>contact.quote</T>
|
|
|
|
</p>
|
|
|
|
|
2021-10-16 09:38:23 -07:00
|
|
|
<p v-if="$te('contact.hate')">
|
2021-04-13 12:14:24 -07:00
|
|
|
<Icon v="hand-middle-finger"/>
|
|
|
|
<T>contact.hate</T>
|
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
|
2020-10-10 13:24:11 -07:00
|
|
|
<section>
|
2020-11-23 08:41:12 -08:00
|
|
|
<h3 class="mb-3">
|
2020-10-10 13:24:11 -07:00
|
|
|
<Icon v="users"/>
|
|
|
|
<T>contact.authors</T>
|
|
|
|
</h3>
|
2021-10-25 04:14:49 -07:00
|
|
|
<Authors bigteam/>
|
2020-10-10 13:24:11 -07:00
|
|
|
</section>
|
2020-10-10 13:40:40 -07:00
|
|
|
|
2021-09-05 03:25:52 -07:00
|
|
|
<Support id="support"/>
|
2021-07-24 05:55:24 -07:00
|
|
|
|
|
|
|
<Mission/>
|
2020-09-23 12:16:56 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-09-23 12:29:55 -07:00
|
|
|
import { head } from "../src/helpers";
|
2021-12-16 04:10:54 -08:00
|
|
|
import {getContactLinks, getSocialLinks} from '../src/contact';
|
2020-09-23 12:29:55 -07:00
|
|
|
|
2020-09-23 12:16:56 -07:00
|
|
|
export default {
|
2021-12-16 04:10:54 -08:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
links: [...getContactLinks(this.config), ...getSocialLinks(this.config)],
|
|
|
|
};
|
|
|
|
},
|
2020-09-23 12:16:56 -07:00
|
|
|
head() {
|
2020-09-23 12:29:55 -07:00
|
|
|
return head({
|
2020-09-28 08:51:26 -07:00
|
|
|
title: this.$t('contact.header'),
|
2020-09-23 12:29:55 -07:00
|
|
|
});
|
2020-09-23 12:16:56 -07:00
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|