generated from BastiDood/sveltekit-tailwind-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
63 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<script> | ||
import profile from '$lib/brand/logotype/logotype-dark-transparent.svg'; | ||
</script> | ||
|
||
<footer class="bg-base-300 p-4 text-gray-400 sm:p-6"> | ||
<div class="mx-auto max-w-screen-xl"> | ||
<div class="md:flex md:justify-between"> | ||
<div class="mb-6 md:mb-0"> | ||
<a href="/" class="flex items-center"> | ||
<img src={profile} alt="BastiDood" loading="lazy" class="mr-3 max-w-48" /> | ||
</a> | ||
</div> | ||
<div class="grid grid-cols-2 gap-8 sm:gap-6"> | ||
<div> | ||
<h2 class="mb-4 text-sm font-semibold uppercase text-base-content">Sitemap</h2> | ||
<ul class="space-y-2 text-gray-400"> | ||
<li><a href="/" class="hover:underline">Home</a></li> | ||
<li><a href="/guide/" class="hover:underline">Guide</a></li> | ||
<li><a href="/reference/" class="hover:underline">Reference</a></li> | ||
</ul> | ||
</div> | ||
<div> | ||
<h2 class="mb-4 text-sm font-semibold uppercase text-base-content">Code</h2> | ||
<ul class="space-y-2 text-gray-400"> | ||
<li> | ||
<a href="https://github.com/BastiDood/spectro" target="_blank" class="hover:underline" | ||
>Repository</a | ||
> | ||
</li> | ||
<li> | ||
<a | ||
href="https://github.com/BastiDood/spectro/blob/main/LICENSE" | ||
target="_blank" | ||
class="hover:underline">License</a | ||
> | ||
</li> | ||
<li> | ||
<a | ||
href="https://github.com/BastiDood/spectro/blob/main/COPYING.md" | ||
target="_blank" | ||
class="hover:underline">External Assets</a | ||
> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<hr class="my-6 border-gray-700 sm:mx-auto lg:my-8" /> | ||
<p class="text-sm text-gray-400"> | ||
Coded with ❤️ by <a rel="external" href="https://bastidood.github.io/" class="link link-primary" | ||
>Basti Ortiz</a | ||
>. Themes, branding, and design by | ||
<a rel="external" href="https://github.com/Anjellyrika" class="link link-primary">Jelly Raborar</a>. | ||
</p> | ||
</div> | ||
</footer> |