1
0

Update GITHUB_LINK -> DOCS_LINK

This commit is contained in:
Mathias Wagner 2025-02-16 14:28:07 +01:00
parent aa67a196d0
commit b58580fc4c
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -1,14 +1,13 @@
import "./styles.sass";
import GitHubImage from "@/common/images/GitHub.png"
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
import {faGear, faPlus, faRightToBracket} from "@fortawesome/free-solid-svg-icons";
import {faBook, faGear, faPlus, faRightToBracket} from "@fortawesome/free-solid-svg-icons";
import {Link} from "react-router-dom";
import {useRef, useState} from "react";
import {useNavigate} from "react-router";
import Dialog from "@/pages/Home/components/Dialog";
export const DONATION_LINK = "https://ko-fi.com/gnmyt";
export const GITHUB_LINK = "https://github.com/gnmyt/PerfectMarketGame";
export const DOCS_LINK = "https://edu.gnm.dev";
export const Home = () => {
@ -42,9 +41,9 @@ export const Home = () => {
<a href={DONATION_LINK} target="_blank" rel="noreferrer">Lass doch eine Spende da</a>,
wenn dir das Spiel gefällt!
</p>
<a className="glassy github-link" href={GITHUB_LINK} target="_blank" rel="noreferrer">
<img src={GitHubImage} alt="GitHub Logo"/>
<h2>Source-Code ansehen</h2>
<a className="glassy github-link" href={DOCS_LINK} target="_blank" rel="noreferrer">
<FontAwesomeIcon icon={faBook}/>
<h2>Dokumentation</h2>
</a>
</div>
</div>