This commit is contained in:
Philippe Loctaux 2023-05-18 18:44:48 +02:00
parent ad861ba802
commit d925be8891
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,9 @@
---
const year = new Date().getFullYear();
---
<footer class="bg-black">
<div class="container mx-auto px-4 py-8 mt-8">
<p>&copy; 2015 - {year} Philippe Loctaux</p>
</div>
</footer>

View file

@ -1,4 +1,5 @@
--- ---
import Footer from "../components/footer.astro";
import Hero from "../components/hero.astro"; import Hero from "../components/hero.astro";
import Whoami from "../components/whoami.astro"; import Whoami from "../components/whoami.astro";
--- ---
@ -15,5 +16,6 @@ import Whoami from "../components/whoami.astro";
<main class="container mx-auto px-4 py-16"> <main class="container mx-auto px-4 py-16">
<Whoami /> <Whoami />
</main> </main>
<Footer />
</body> </body>
</html> </html>