Transfer some Posts and automate original German

This commit is contained in:
2023-12-10 01:48:53 +01:00
parent 311856415e
commit 3d95bffb6a
89 changed files with 1630 additions and 1163 deletions

View File

@@ -27,12 +27,12 @@ const { title } = Astro.props;
</a>
<div class="flex justify-center flex-wrap">
<div class="btn-dropdown my-1">
<div class="btn btn-gray" tabindex="0">
<button class="btn btn-gray">
<a href={l("/")}>
<span class="btn__text">{t("navbar.links.home.title")}</span>
</a>
<CaretDownOutline class="ml-2 mt-auto" />
</div>
</button>
<div>
<a class="btn btn-gray my-1" href={l("/announcements")}>{t("navbar.links.home.announcements")}</a>
<a class="btn btn-gray" href={l("/about")}>{t("navbar.links.home.about")}</a>
@@ -41,12 +41,12 @@ const { title } = Astro.props;
</div>
</div>
<div class="btn-dropdown my-1">
<div class="btn btn-gray" tabindex="0">
<button class="btn btn-gray">
<a rel="prefetch" href={l("/rules")}>
<span class="btn__text">{t("navbar.links.rules.title")}</span>
</a>
<CaretDownOutline class="ml-2 mt-auto" />
</div>
</button>
<div>
<h2 class="px-2 text-gray-300">{t("navbar.links.rules.gamemode")}</h2>
<a href={l("/rules/wargear")} class="btn btn-gray">{t("navbar.links.rules.wg")}</a>
@@ -107,7 +107,7 @@ const { title } = Astro.props;
<main class="flex-1">
<slot />
</main>
<footer class="bg-gray-900 w-screen min-h-80 mt-4 rounded-t-2xl flex flex-col dark:bg-neutral-900">
<footer class="bg-gray-900 w-screen min-h-80 mt-4 pb-2 rounded-t-2xl flex flex-col dark:bg-neutral-900">
<div class="flex-1 flex justify-evenly items-center md:items-start mt-4 md:flex-row flex-col">
<div class="footer-card">
<h1>Serverstatus</h1>
@@ -130,7 +130,7 @@ const { title } = Astro.props;
<a class="flex" href="/"><DiscordSolid class="mr-2" /> Discord</a>
</div>
</div>
<span class="text-sm text-white text-center">© SteamWar.de - {new Date().getFullYear()}</span>
<span class="text-sm text-white text-center mt-1">© SteamWar.de - Made with ❤️ by Chaoscaot</span>
</footer>
</div>
</Fragment>