22 lines
621 B
Vue
22 lines
621 B
Vue
<template>
|
|
<footer class="footer">
|
|
<div class="is-flex socials mb-5">
|
|
<Socials class="mx-auto is-justify-content-space-around" />
|
|
</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>
|
|
<nuxt-link href="/admin">Admin</nuxt-link>
|
|
</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>
|