mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
65 lines
2.0 KiB
Vue
65 lines
2.0 KiB
Vue
<template lang="pug">
|
|
div
|
|
static-header
|
|
.container-fluid
|
|
.row
|
|
.col-md-6.offset-3
|
|
h1 {{ $t('contactUs') }}
|
|
|
|
p
|
|
| {{ $t('reportAccountProblems') }}
|
|
| :
|
|
a(href='mailto:admin@habitica.com') admin@habitica.com
|
|
br
|
|
| {{ $t('reportBug') }}
|
|
| :
|
|
a(target='_blank', href='/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac') Report a Bug guild
|
|
| or
|
|
a(target='_blank', href='https://github.com/HabitRPG/habitica/issues?q=is%3Aopen') GitHub
|
|
br
|
|
| {{ $t('reportCommunityIssues') }}
|
|
| :
|
|
a(href='mailto:leslie@habitica.com') leslie@habitica.com
|
|
br
|
|
| {{ $t('subscriptionPaymentIssues') }}
|
|
| :
|
|
a(href='mailto:admin@habitica.com') admin@habitica.com
|
|
br
|
|
| {{ $t('generalQuestionsSite') }}
|
|
| :
|
|
a(target='_blank', href='/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a') Habitica Help guild
|
|
br
|
|
| {{ $t('businessInquiries') }}
|
|
| :
|
|
a(href='mailto:vicky@habitica.com') vicky@habitica.com
|
|
br
|
|
| {{ $t('merchandiseInquiries') }}
|
|
| :
|
|
a(href='mailto:store@habitica.com') store@habitica.com
|
|
br
|
|
| {{ $t('marketingInquiries') }}
|
|
| :
|
|
a(href='mailto:leslie@habitica.com') leslie@habitica.com
|
|
app-footer
|
|
</template>
|
|
|
|
<style lang='scss' scoped>
|
|
@import '~client/assets/scss/static.scss';
|
|
|
|
.container-fluid {
|
|
margin-top: 56px;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import AppFooter from 'client/components/appFooter';
|
|
import StaticHeader from './header.vue';
|
|
|
|
export default {
|
|
components: {
|
|
AppFooter,
|
|
StaticHeader,
|
|
},
|
|
};
|
|
</script>
|