svelte-playground/src/lib/components/footer.svelte

16 lines
239 B
Svelte
Raw Normal View History

2021-08-01 21:33:31 +02:00
<footer>
2021-08-05 17:51:59 +02:00
<p>
made with ❤️ and
<a href="https://svelte.dev/">
<img src="https://avatars.githubusercontent.com/u/23617963?s=18" alt="svelte" /></a
>
</p>
2021-08-01 22:40:32 +02:00
</footer>
<style>
2021-08-05 17:51:59 +02:00
footer {
margin: 1em;
padding: 1em;
}
</style>