mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 17:11:21 +00:00
feat: added footer component and layout
This commit is contained in:
parent
4c99a08fcc
commit
3aca575271
2 changed files with 17 additions and 1 deletions
17
src/components/Footer.svelte
Normal file
17
src/components/Footer.svelte
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!-- Footer.svelte -->
|
||||
<footer>
|
||||
<p>© {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>
|
|
@ -10,7 +10,6 @@
|
|||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
<style>
|
||||
nav {
|
||||
background-color: #007bff;
|
||||
|
|
Loading…
Reference in a new issue