paulnicoue/components/AppFooter.vue

36 lines
647 B
Vue
Raw Normal View History

<template>
<footer>
<div class="contact">
<a href="mailto:contact@paulnicoue.com" target="_blank" aria-label="Écrire un e-mail à Paul Nicoué">contact<span>@</span>paulnicoue.com</a>
</div>
</footer>
</template>
<script setup>
</script>
<style lang="scss">
footer {
2022-12-09 16:59:39 +01:00
padding: 4rem 2rem;
}
.contact {
font-family: var(--title-font-family);
font-size: 1.4rem;
2022-12-09 16:59:39 +01:00
font-weight: var(--light-font-weight);
text-align: center;
a {
text-decoration: none;
}
span {
color: var(--emerald);
}
}
</style>