feat: added footer component and layout

This commit is contained in:
Bart van der Braak 2023-07-20 09:13:30 +02:00
parent 4c99a08fcc
commit 3aca575271
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,17 @@
<!-- Footer.svelte -->
<footer>
<p>&copy; {new Date().getFullYear()} hellob.art. All rights reserved.</p>
<p>Contact: bart@vanderbraak.nl</p>
</footer>
<style>
footer {
background-color: #f0f0f0;
padding: 1rem;
text-align: center;
}
p {
margin: 0.5rem 0;
}
</style>

View file

@ -10,7 +10,6 @@
</ul>
</nav>
<style>
nav {
background-color: #007bff;