This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/routes/contact.vue

30 lines
565 B
Vue

<template>
<div class="container">
<h2>
<Icon v="comment-alt-smile"/>
<T>contact.header</T>
</h2>
<section class="mt-0">
<p class="mb-2">
<T>contact.authors</T>:
</p>
<Authors expanded/>
</section>
<Socials/>
</div>
</template>
<script>
import { head } from "../src/helpers";
export default {
head() {
return head({
title: this.$t('contact.header'),
});
},
}
</script>