kandimat-user-app/src/app/contact/components/index.vue
Christoph Lienhard 4fedc4ef80 more cleanup
* improve imprint
* rename party -> person in route
* remove unnecessary components in about and partner
* fix email addresses
* remove most of the theses for easier manual testing (will be replaced by backendcalls in the future anyways)
2020-06-13 14:50:09 +02:00

34 lines
619 B
Vue

<template>
<section>
<h1>{{ $t('contact.headline') }}</h1>
<v-markdown :source="$t('contact.content')" />
<a class="btn" href="backoffice (a) netzbegruenung.de">
backoffice (a) netzbegruenung.de
<feather-mail />
</a>
</section>
</template>
<script>
export default {
name: 'Contact',
components: {
'feather-mail': () =>
import('vue-feather-icons/icons/MailIcon' /* webpackChunkName: "icons" */)
}
}
</script>
<style lang="scss" scoped>
@import "~@/styles/layout";
h1 {
margin-bottom: $base-gap;
}
a {
margin-top: $base-gap;
}
</style>