aboutsummaryrefslogtreecommitdiff
path: root/src/layout
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-08-09 17:31:47 +0200
committerWilliam Hergès <william@herges.fr>2025-08-09 17:31:47 +0200
commit5a2c07f0f1b75fc69c288a02718de1a45a2f8ade (patch)
tree3e4bc54b13769433b64bd63cc99adfdbd3657a34 /src/layout
parentf4c971dc8769f845cc48443dab020cb2e9df661a (diff)
feat(html): footer
Diffstat (limited to 'src/layout')
-rw-r--r--src/layout/Base.astro8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/layout/Base.astro b/src/layout/Base.astro
index a67fc9f..898f6fd 100644
--- a/src/layout/Base.astro
+++ b/src/layout/Base.astro
@@ -12,5 +12,13 @@ const { title = "Arnaud Hergès" } = Astro.props;
</head>
<body>
<slot />
+ <footer>
+ <a href="/legal/">Mentions légales</a>
+ <p>Tous droits réservés &copy; 2025 - Arnaud Hergès.</p>
+ <p>
+ Site web créé par <a href="https://william.herges.fr/" target="_blank">William Hergès</a> avec
+ <a href="https://astro.build/" target="_blank">Astro</a>.
+ </p>
+ </footer>
</body>
</html>