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
Raw Normal View History

2020-07-22 13:19:23 -07:00
<template>
<footer>
<Separator icon="user-friends"/>
2020-09-18 07:55:15 -07:00
<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">
2020-09-14 10:23:17 -07:00
<p class="mb-2">
<T>contact.authors</T>:
2020-09-14 10:23:17 -07:00
</p>
2020-09-23 12:16:56 -07:00
<Authors/>
2020-09-25 09:23:02 -07:00
<p>
<T>footer.source</T>
2020-09-14 10:23:17 -07:00
</p>
2020-07-26 08:35:07 -07:00
</div>
2020-09-24 14:08:13 -07:00
<div class="text-center d-flex flex-column justify-content-center">
2020-09-14 10:23:17 -07:00
<p class="small mb-0">
<Icon v="users"/>
<T>footer.links</T>:
2020-09-14 10:23:17 -07:00
</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>
2020-07-22 13:19:23 -07:00
</footer>
</template>