aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/components
diff options
context:
space:
mode:
authorLynithDev <61880709+LynithDev@users.noreply.github.com>2023-12-27 10:14:04 +0100
committerLynithDev <61880709+LynithDev@users.noreply.github.com>2023-12-27 10:14:04 +0100
commita8b3db9c0344fb82796bad7fc1c3b1b7f20c3fe4 (patch)
treeb00fb2e80bae717cb02f0e28f3a86e3b42dc83dc /apps/website/src/components
parent4bf354c197e834f563046da9fe2140b23a9faf80 (diff)
downloadNexus-a8b3db9c0344fb82796bad7fc1c3b1b7f20c3fe4.tar.gz
Nexus-a8b3db9c0344fb82796bad7fc1c3b1b7f20c3fe4.tar.bz2
Nexus-a8b3db9c0344fb82796bad7fc1c3b1b7f20c3fe4.zip
Remove padding from oneconfig logo + update footer links
Diffstat (limited to 'apps/website/src/components')
-rw-r--r--apps/website/src/components/base/Footer.astro6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/website/src/components/base/Footer.astro b/apps/website/src/components/base/Footer.astro
index 626ff0b..d41ef29 100644
--- a/apps/website/src/components/base/Footer.astro
+++ b/apps/website/src/components/base/Footer.astro
@@ -12,9 +12,9 @@ import Link from './Link.astro';
<Logo logo="polyfrost.full" />
<p>English, USA</p> {/* hardcoded for now, todo i18n */}
<div class="flex flex-row gap-3">
- <a href="" class="hover:text-[#5865F2]"><Icon icon="discord" /></a>
- <a href="" class="hover:text-[#ff0000]"><Icon icon="youtube" /></a>
- <a href="" class="hover:text-[#000000]"><Icon icon="github" /></a>
+ <a href={configConst.socials.discord} target="_blank" class="hover:text-[#5865F2]"><Icon icon="discord" /></a>
+ <a href={configConst.socials.youtube} target="_blank" class="hover:text-[#ff0000]"><Icon icon="youtube" /></a>
+ <a href={configConst.socials.github} target="_blank" class="hover:text-[#000000]"><Icon icon="github" /></a>
</div>
</div>