This commit is contained in:
Maxime Tournier 2026-07-28 13:45:13 +02:00
parent 6e6807d895
commit f71b6fc1b3
4 changed files with 19 additions and 2 deletions

BIN
assets/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

View File

@ -669,6 +669,11 @@ footer {
border-bottom: 1px solid rgba(255, 255, 255, 0.15); border-bottom: 1px solid rgba(255, 255, 255, 0.15);
} }
.footer-top img{
width: 40px;
border-radius: 10px;
}
.footer-top .brand { .footer-top .brand {
color: var(--blanc); color: var(--blanc);
} }

View File

@ -7,7 +7,7 @@
<meta name="description" content="Fernando Paysagiste, artisan indépendant à Nancy : tonte, taille de haies, création et entretien d'espaces verts. Devis gratuit et sans engagement."> <meta name="description" content="Fernando Paysagiste, artisan indépendant à Nancy : tonte, taille de haies, création et entretien d'espaces verts. Devis gratuit et sans engagement.">
<meta name="theme-color" content="#154e1f"> <meta name="theme-color" content="#154e1f">
<link rel="icon" href="assets/images/logo.png" type="image/png"> <link rel="icon" href="assets/images/logo-transparent.png" type="image/png">
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@ -21,7 +21,7 @@
<header class="site-header"> <header class="site-header">
<div class="header-inner"> <div class="header-inner">
<a href="#accueil" class="brand"> <a href="#accueil" class="brand">
<img src="assets/images/logo.png" alt="Logo Fernando Paysagiste" id="logo"> <img src="assets/images/logo-transparent.png" alt="Logo Fernando Paysagiste" id="logo">
<span>Fernando <strong>Paysagiste</strong></span> <span>Fernando <strong>Paysagiste</strong></span>
</a> </a>
@ -215,6 +215,9 @@
<footer> <footer>
<div class="footer-top"> <div class="footer-top">
<style>
</style>
<a href="#accueil" class="brand"> <a href="#accueil" class="brand">
<img src="assets/images/logo.png" alt="Logo Fernando Paysagiste"> <img src="assets/images/logo.png" alt="Logo Fernando Paysagiste">
<span>Fernando <strong>Paysagiste</strong></span> <span>Fernando <strong>Paysagiste</strong></span>
@ -255,5 +258,14 @@
</div> </div>
</footer> </footer>
<script>
const navToggle = document.getElementById('nav-toggle');
document.querySelectorAll('.nav-mobile a').forEach(function (link) {
link.addEventListener('click', function () {
navToggle.checked = false;
});
});
</script>
</body> </body>
</html> </html>