cineclub-site/front/components/layout/footer.vue

23 lines
621 B
Vue
Raw Normal View History

2022-08-27 16:34:48 +02:00
<template>
<footer class="footer">
2022-12-04 03:13:25 +01:00
<div class="is-flex socials mb-5">
<Socials class="mx-auto is-justify-content-space-around" />
2022-08-27 16:34:48 +02:00
</div>
<div class="is-flex is-justify-content-center links">
<a href="https://git.eleves.ens.fr/klub-dev-ens/cineclub">Code source</a>
<div>Le ciné-club est un club du <a href="http://cof.ens.fr">COF</a></div>
2022-12-04 03:13:52 +01:00
<nuxt-link href="/admin">Admin</nuxt-link>
2022-08-27 16:34:48 +02:00
</div>
</footer>
</template>
<script setup lang="ts"></script>
<style lang="sass" scoped>
.footer
background-color: $grey-lightest
.links :not(:first-child)
margin-left: 2rem
</style>