aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorLynithDev <61880709+LynithDev@users.noreply.github.com>2024-01-01 18:33:51 +0100
committerLynithDev <61880709+LynithDev@users.noreply.github.com>2024-01-01 18:33:51 +0100
commit7e3cff959183386f5120acf1eb956ee41f7bd713 (patch)
tree968a4cb2add2b12790eede9a7ba03f8748b35a13 /apps
parent6a861210972c00d53992fd808488fc86c5947481 (diff)
downloadNexus-7e3cff959183386f5120acf1eb956ee41f7bd713.tar.gz
Nexus-7e3cff959183386f5120acf1eb956ee41f7bd713.tar.bz2
Nexus-7e3cff959183386f5120acf1eb956ee41f7bd713.zip
Add socials + links to buttons
Diffstat (limited to 'apps')
-rw-r--r--apps/website/config.ts1
-rw-r--r--apps/website/src/pages/mods.astro9
-rw-r--r--apps/website/src/types/Config.d.ts1
3 files changed, 7 insertions, 4 deletions
diff --git a/apps/website/config.ts b/apps/website/config.ts
index f55f380..eaffaf3 100644
--- a/apps/website/config.ts
+++ b/apps/website/config.ts
@@ -7,6 +7,7 @@ export const configConst = {
youtube: 'https://youtube.com/',
discord: 'https://discord.gg/',
github: 'https://github.com/Polyfrost',
+ modrinth: 'https://modrinth.com/user/Wyvest',
},
navbar: {
left: [
diff --git a/apps/website/src/pages/mods.astro b/apps/website/src/pages/mods.astro
index c36c7c8..55a6cdf 100644
--- a/apps/website/src/pages/mods.astro
+++ b/apps/website/src/pages/mods.astro
@@ -5,6 +5,7 @@ import Header from '@components/base/Header.astro';
import Paragraph from '@components/base/Paragraph.astro';
import Section from '@components/base/Section.astro';
import Slider from '@components/base/Slider.astro';
+import configConst from '@config';
import Layout from '@layouts/Layout.astro';
import { Code } from 'astro:components';
@@ -41,8 +42,8 @@ import { Code } from 'astro:components';
<div class="flex flex-col justify-start items-center max-w-full mt-6 md:mt-10 gap-6 px-4">
<Header align="center" size="xxl" class="text-navy-peony max-w-xl">Redefining modding, one mod at a time</Header>
<div class="flex flex-row justify-center items-center gap-x-2">
- <Button style="primary" iconLeft="link-external">Modrinth</Button>
- <Button style="primary" iconLeft="link-external">GitHub</Button>
+ <Button style="primary" iconLeft="link-external" href={configConst.socials.modrinth}>Modrinth</Button>
+ <Button style="primary" iconLeft="github" href={configConst.socials.github}>GitHub</Button>
</div>
<Paragraph class="text-navy-peony text-lg font-semibold max-w-screen-sm text-center mt-20">
@@ -127,8 +128,8 @@ public MyConfig() {
<div class="flex flex-col gap-y-1 relative md:-left-12 justify-center items-center">
<Header size="xl" class="text-navy-peony text-header-page w-11/12 md:max-w-lg text-center">Get our mods, available on Modrinth and GitHub.</Header>
<div class="flex flex-row justify-center items-center gap-x-2">
- <Button style="primary" iconLeft="link-external">Modrinth</Button>
- <Button style="primary" iconLeft="link-external">GitHub</Button>
+ <Button style="primary" iconLeft="link-external" href={configConst.socials.modrinth}>Modrinth</Button>
+ <Button style="primary" iconLeft="github" href={configConst.socials.github}>GitHub</Button>
</div>
</div>
</Section>
diff --git a/apps/website/src/types/Config.d.ts b/apps/website/src/types/Config.d.ts
index 5b1e283..d4f8a7b 100644
--- a/apps/website/src/types/Config.d.ts
+++ b/apps/website/src/types/Config.d.ts
@@ -48,6 +48,7 @@ export interface Config {
// twitter: string,
discord: string,
github: string,
+ modrinth: string,
},
navbar: {
left: NavbarElement[],