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/components/Footer.vue

43 lines
1.6 KiB
Vue

<template>
<footer>
<Separator icon="user-friends"/>
<div class="d-flex flex-column flex-md-row justify-content-around mt-4 mb-5">
<div class="small text-center d-flex flex-column justify-content-center">
<p class="mb-2">
<T>contact.authors</T>:
</p>
<Authors/>
<p>
<T>footer.source</T>
</p>
</div>
<div class="text-center d-flex flex-column justify-content-center">
<p class="small mb-0">
<Icon v="users"/>
<T>footer.links</T>:
</p>
<div class="mb-3">
<SquareButton link="https://avris.it">
<img src="~assets/avris.svg"/>
</SquareButton>
<SquareButton link="https://facebook.com/neutratywy/">
<Icon v="facebook-f" set="b"/>
</SquareButton>
<SquareButton link="https://instagram.com/neutratywy/">
<Icon v="instagram" set="b"/>
</SquareButton>
<SquareButton link="https://paypal.me/AndreAvris">
<Icon v="paypal" set="b"/>
</SquareButton>
<SquareButton link="https://gitlab.com/Avris/Zaimki">
<Icon v="gitlab" set="b"/>
</SquareButton>
</div>
<Share/>
</div>
</div>
</footer>
</template>