Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
feat: add footer (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cahllagerfeld authored Feb 12, 2022
1 parent 30a6609 commit c8d814d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/lib/components/footer.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<footer class="fixed left-0 bottom-0 w-full bg-gray-50">
<ul class="flex list-none justify-center space-x-4">
<li>
<a
class="transition duration-200 hover:text-eddiehub-200 focus:text-eddiehub-200"
href="https://discord.com/invite/jZQs6Wu"
target="_blank">Discord</a
>
</li>
<li>
<a
class="transition duration-200 hover:text-eddiehub-200 focus:text-eddiehub-200"
href="http://github.com/EddieHubCommunity">Github</a
>
</li>
</ul>
</footer>
2 changes: 2 additions & 0 deletions src/routes/__layout.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script>
import '../app.css';
import Nav from '$lib/components/nav.svelte';
import Footer from '$lib/components/footer.svelte';
</script>

<div class="float-none mx-auto my-0 flex min-h-screen w-[90%] max-w-[1400px] flex-col">
Expand All @@ -9,4 +10,5 @@
Eddiehub Issue-Crawler for finding <b>good-first-issues</b>
</div>
<slot />
<Footer />
</div>

0 comments on commit c8d814d

Please sign in to comment.