Skip to content

Commit

Permalink
Merge pull request #615 from CorrelAid/598-add-link-to-website-repo-t…
Browse files Browse the repository at this point in the history
…o-website-footer

add code source and bug report text to footer
  • Loading branch information
jstet authored Nov 19, 2023
2 parents c042820 + 49f7809 commit 0061474
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions src/lib/layout/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<footer class="w-screen border-t border-neutral-25">
<div class=" flex pt-12">
<ul
class="mx-auto flex flex-wrap items-center justify-center gap-3 text-sm font-light text-base-content md:gap-4 md:text-base"
class="mx-auto flex flex-wrap items-center justify-center gap-3 px-4 text-sm font-light text-base-content md:gap-4 md:text-base"
>
{#each links as link}
<li class="px-2">
Expand Down Expand Up @@ -76,10 +76,27 @@
{/each}
</div>
</div>

<div class=" flex pb-5">
<ul
class="mx-auto flex items-center gap-3 text-sm font-light text-base-content md:text-base"
>
<a
class="transition hover:text-secondary"
href="https://github.com/CorrelAid/correlaid_website"
>
Website Source
</a>
<a
class="transition hover:text-secondary"
href="https://github.com/CorrelAid/correlaid_website/issues"
>
Bugreport
</a>
</ul>
</div>
<div class=" flex pb-10">
<ul
class="mx-auto flex items-center gap-6 text-sm font-light tracking-wide text-base-content md:text-base"
class="mx-auto flex items-center gap-3 text-sm font-light tracking-wide text-base-content md:text-base"
>
<li>CorrelAid. © {new Date().getFullYear()}</li>
</ul>
Expand Down

1 comment on commit 0061474

@vercel
Copy link

@vercel vercel bot commented on 0061474 Nov 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

correlaid – ./

correlaid-correlaid.vercel.app
correlaid.org
www.correlaid.org
correlaid-git-main-correlaid.vercel.app

Please sign in to comment.