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.
2020-09-23 12:16:56 -07:00
|
|
|
<template>
|
|
|
|
<div class="container">
|
|
|
|
<h2>
|
|
|
|
<Icon v="comment-alt-smile"/>
|
|
|
|
Kontakt
|
|
|
|
</h2>
|
|
|
|
|
2020-09-24 12:38:15 -07:00
|
|
|
<section class="mt-0">
|
|
|
|
<p class="mb-2">
|
|
|
|
<nuxt-link to="/neutratywy#autor">Autorza</nuxt-link> strony:
|
|
|
|
</p>
|
2020-09-23 12:16:56 -07:00
|
|
|
<Authors expanded/>
|
|
|
|
</section>
|
2020-09-24 12:38:15 -07:00
|
|
|
|
|
|
|
<Socials/>
|
2020-09-23 12:16:56 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-09-23 12:29:55 -07:00
|
|
|
import { head } from "../src/helpers";
|
|
|
|
|
2020-09-23 12:16:56 -07:00
|
|
|
export default {
|
|
|
|
head() {
|
2020-09-23 12:29:55 -07:00
|
|
|
return head({
|
|
|
|
title: 'Kontakt',
|
|
|
|
});
|
2020-09-23 12:16:56 -07:00
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|