diff --git a/src/content/downloads/advancedscripts.json b/src/content/downloads/advancedscripts.json index 588acea..0bb830c 100644 --- a/src/content/downloads/advancedscripts.json +++ b/src/content/downloads/advancedscripts.json @@ -2,8 +2,9 @@ "name": "AdvancedScripts", "description": "Ein Fabric-Mod, der für den BauServer von SteamWar Hotkeys für das ScriptSystem hinzufügt. Hierzu werden die einzelnen Zeichen an den Server gesendet und vom Server verarbeitet.", "url": { - "1.20.1": "https://steamwar.de/AdvancedScriptsV3", - "1.19": "https://steamwar.de/AdvancedScripts" + "1.21.4": "https://git.steamwar.de/SteamWar/AdvancedScripts/releases/download/2.2.0/AdvancedScripts-2.2.0.jar", + "1.20.6": "https://git.steamwar.de/SteamWar/AdvancedScripts/releases/download/2.1.0/AdvancedScripts-2.1.0.jar", + "1.19.3": "https://git.steamwar.de/SteamWar/AdvancedScripts/releases/download/2.0.0/AdvancedScripts-2.0.0.jar" }, - "sourceUrl": "https://steamwar.de/devlabs/SteamWar/AdvancedScripts" + "sourceUrl": "https://git.steamwar.de/SteamWar/AdvancedScripts" } \ No newline at end of file diff --git a/src/i18n/common/de.json b/src/i18n/common/de.json index 96e2a91..9a7a166 100644 --- a/src/i18n/common/de.json +++ b/src/i18n/common/de.json @@ -240,5 +240,9 @@ }, "ranking": { "heading": "{# mode #} Rangliste" + }, + "404": { + "title": "404 - Seite nicht gefunden", + "description": "Seite nicht gefunden" } } diff --git a/src/i18n/common/en.json b/src/i18n/common/en.json index e8d17a3..34ee3d4 100644 --- a/src/i18n/common/en.json +++ b/src/i18n/common/en.json @@ -180,5 +180,9 @@ }, "stats": { "title": "Fight Statistics" + }, + "404": { + "title": "404 - Page not found", + "description": "Page not found" } } diff --git a/src/pages/not-found.astro b/src/pages/not-found.astro new file mode 100644 index 0000000..16f9711 --- /dev/null +++ b/src/pages/not-found.astro @@ -0,0 +1,39 @@ +--- +import PageLayout from "../layouts/PageLayout.astro"; +import {t} from "astro-i18n"; +--- + + + + + 404 + + + + + + + + + + + + + + + + + + + + + + Seite nicht gefunden + + + + + + + + \ No newline at end of file