website-astro/src/components/Footer.astro

43 lines
981 B
Text
Raw Normal View History

2024-12-29 11:33:22 +00:00
<footer class='footer' role='contentinfo'>
<section class='flow'>
2022-12-28 09:36:15 +00:00
<p>Nicolas Arduin</p>
2024-12-29 11:33:22 +00:00
<p>Développeur web spécialisé en accessibilité.</p>
<ul class='flow' role='list'>
2022-12-28 09:36:15 +00:00
<li>
2024-12-29 11:33:22 +00:00
<a
href='mailto:contact@nardu.in'
title='Envoyez-moi un mail (ouverture du logiciel automatique).'
2022-12-28 09:36:15 +00:00
>contact@nardu.in</a
>
</li>
<li>
2024-12-29 11:33:22 +00:00
<a
href='tel:+33749464239'
title='Contactez-moi par téléphone (ouverture du logiciel automatique)'
>+337 49 46 42 39</a
>
2022-12-28 09:36:15 +00:00
</li>
2024-12-29 11:33:22 +00:00
<li><a href='/veille'>Veille</a></li>
<li><a href='/plan-du-site'>Plan du site</a></li>
<li><a href='/"rss.xml'>RSS</a></li>
2022-12-28 09:36:15 +00:00
</ul>
</section>
</footer>
<style>
.footer {
--flow-space: var(--space-xs-s);
inline-size: 100%;
margin: 0 auto;
margin-block-start: var(--space-m-l);
padding: var(--space-s-m);
text-align: center;
border-top: solid 2px var(--color-dark-blue);
}
.footer a {
font-weight: 500;
color: var(--color-blue);
}
</style>