Add index page, favicon, robots.txt and sitemap.xml

This commit is contained in:
Paul Nicoué 2022-12-08 15:17:39 +01:00
parent 820907c3c2
commit cb904127c0
26 changed files with 4163 additions and 2638 deletions

34
components/AppFooter.vue Normal file
View file

@ -0,0 +1,34 @@
<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>