Skip to content

Commit 8a13d83

Browse files
committedJun 15, 2024··
footer
1 parent 2233ddd commit 8a13d83

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed
 

‎src/components/Footer.astro

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
---
3+
<footer>
4+
<div>
5+
Copyright Fernando Ayats
6+
</div>
7+
</footer>

‎src/layouts/Base.astro

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
import NavBar from "../components/NavBar.astro";
3+
import Footer from '../components/Footer.astro';
34
---
45

56
<html lang="en">
@@ -16,6 +17,8 @@ import NavBar from "../components/NavBar.astro";
1617

1718
<div class="m-auto max-w-7xl sm:px-14 md:px-24 lg:px-32 py-10 mt-20">
1819
<slot />
20+
21+
<Footer/>
1922
</div>
2023

2124
</body>

0 commit comments

Comments
 (0)
Please sign in to comment.