34 lines
595 B
Vue
34 lines
595 B
Vue
<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 {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.contact {
|
|
font-family: var(--title-font-family);
|
|
font-size: 1.4rem;
|
|
text-align: center;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
span {
|
|
color: var(--emerald);
|
|
}
|
|
}
|
|
|
|
</style>
|