kandimat-user-app/src/app/contact/components/index.vue

34 lines
619 B
Vue
Raw Normal View History

<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 />
2017-08-26 00:45:59 +02:00
</a>
</section>
</template>
<script>
export default {
name: 'Contact',
components: {
'feather-mail': () =>
import('vue-feather-icons/icons/MailIcon' /* webpackChunkName: "icons" */)
}
}
</script>
2017-08-12 23:00:43 +02:00
<style lang="scss" scoped>
2019-03-20 23:19:13 +01:00
@import "~@/styles/layout";
2017-08-12 23:00:43 +02:00
h1 {
margin-bottom: $base-gap;
}
2017-08-26 00:45:59 +02:00
a {
margin-top: $base-gap;
}
2017-08-12 23:00:43 +02:00
</style>