add self-hosted git link to footer (#58)

This commit is contained in:
Visual-Dawg 2024-04-16 18:40:40 +02:00 committed by GitHub
parent c0a11af2b1
commit 937b545f85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 1 deletions

View File

@ -3,6 +3,7 @@
import GithubIcon from '~icons/ri/github-fill' import GithubIcon from '~icons/ri/github-fill'
import { discordLink } from '$lib/constants.mjs' import { discordLink } from '$lib/constants.mjs'
import RssIcon from '~icons/mingcute/rss-fill' import RssIcon from '~icons/mingcute/rss-fill'
import ForgejoIcon from '~icons/fe/git'
/** @type {[string, string, string, string]} */ /** @type {[string, string, string, string]} */
let team = [ let team = [
@ -58,7 +59,7 @@
<div class="flex flex-col gap-4"> <div class="flex flex-col gap-4">
<div class="pretitle" font-bold>Socials</div> <div class="pretitle" font-bold>Socials</div>
<ul class="flex gap-6"> <ul class="flex grid-cols-2 gap-6 gap-y-3 md:grid">
<li class=""> <li class="">
<a <a
href={discordLink} href={discordLink}
@ -83,6 +84,14 @@
aria-label="Rss Feed"><RssIcon class="h-12 w-12 " /></a aria-label="Rss Feed"><RssIcon class="h-12 w-12 " /></a
> >
</li> </li>
<li class="">
<a
href="https://code.hyprland.org/"
class="text-slate-400 hover:text-slate-200"
target="_blank"
aria-label="Rss Feed"><ForgejoIcon class="h-12 w-12 " /></a
>
</li>
</ul> </ul>
</div> </div>