Website/src/layouts/NavbarLayout.astro

147 Zeilen
6.6 KiB
Plaintext

2023-09-24 16:33:14 +02:00
---
import Basic from "./Basic.astro";
import { Image } from 'astro:assets';
import '../styles/button.css';
import localLogo from "../images/logo.png"
import {l, t} from "astro-i18n";
2023-10-08 14:34:38 +02:00
import {YoutubeSolid} from "flowbite-svelte-icons"
2023-09-24 16:33:14 +02:00
const { title } = Astro.props;
---
<Basic title={title}>
<slot name="head" slot="head" />
<Fragment>
2023-10-01 10:04:04 +02:00
<div class="min-h-screen flex flex-col">
<nav-bar class="fixed top-0 left-0 right-0 px-4 transition-colors z-10 flex justify-center \
2023-10-08 14:34:38 +02:00
before:bg-black before:absolute before:top-0 before:left-0 before:bottom-0 before:right-0 before:-z-10 before:scale-y-0 before:transition-transform before:origin-top">
2023-10-01 10:04:04 +02:00
<div class="flex flex-col md:flex-row items-center justify-evenly md:justify-between match">
<a class="flex items-center" href={l("/")}>
<Image src={localLogo} alt={t("navbar.logo.alt")} width="44" height="44" quality="max" class="mr-2 p-1 bg-black rounded-full" />
<h1 class="text-2xl uppercase font-bold inline-block dark:text-white">
{t("navbar.title")}
</h1>
2023-09-24 16:33:14 +02:00
</a>
2023-10-01 10:04:04 +02:00
<div class="flex items-center flex-wrap">
<div class="btn-dropdown my-1">
<a class="btn btn-gray" href={l("/")}>
<span class="btn__text">{t("navbar.links.home.title")}</span>
</a>
<div>
<a class="btn btn-gray" href={l("/about")}>{t("navbar.links.home.about")}</a>
<a class="btn btn-gray">{t("navbar.links.home.downloads")}</a>
<a class="btn btn-gray" href={l("/faq")}>{t("navbar.links.home.faq")}</a>
</div>
</div>
<a class="btn btn-gray my-1" href={l("/")}>
<span class="btn__text">{t("navbar.links.announcements")}</span>
</a>
<div class="btn-dropdown my-1">
<a class="btn btn-gray" rel="prefetch" href={l("/blog")}>
<span class="btn__text">{t("navbar.links.rules.title")}</span>
</a>
<div>
<h2 class="px-2 text-gray-300">{t("navbar.links.rules.gamemode")}</h2>
<a class="btn btn-gray">{t("navbar.links.rules.wg")}</a>
<a class="btn btn-gray">{t("navbar.links.rules.mwg")}</a>
<a class="btn btn-gray">{t("navbar.links.rules.ws")}</a>
<a class="btn btn-gray">{t("navbar.links.rules.as")}</a>
<h2 class="px-2 text-gray-300">{t("navbar.links.rules.rotating")}</h2>
<a class="btn btn-gray">{t("navbar.links.rules.megawg")}</a>
<a class="btn btn-gray">{t("navbar.links.rules.micro")}</a>
<a class="btn btn-gray">{t("navbar.links.rules.sf")}</a>
<h2 class="px-2 text-gray-300">{t("navbar.links.rules.general")}</h2>
<a class="btn btn-gray">{t("navbar.links.rules.coc")}</a>
</div>
</div>
<div class="btn-dropdown my-1">
<a class="btn btn-gray" rel="prefetch">
<span class="btn__text">Help</span>
</a>
<div>
<a class="btn btn-gray">Helpcenter</a>
<a class="btn btn-gray">Docs</a>
</div>
</div>
<a class="btn my-1">
<span class="btn__text">Login</span>
</a>
</div>
2023-09-24 16:33:14 +02:00
</div>
</nav-bar>
<script>
class Navbar extends HTMLElement {
constructor() {
super();
if (window.scrollY != 0) {
this.classList.add("scrolled");
} else {
this.classList.remove("scrolled");
}
window.onscroll = e => {
if (window.scrollY != 0) {
this.classList.add("scrolled");
} else {
this.classList.remove("scrolled");
}
}
}
}
customElements.define('nav-bar', Navbar);
</script>
2023-10-01 10:04:04 +02:00
<main class="flex-1">
2023-09-24 16:33:14 +02:00
<slot />
</main>
2023-10-01 10:04:04 +02:00
<footer class="bg-gray-900 w-screen h-80 mt-4 rounded-t-2xl flex flex-col dark:bg-neutral-900">
<div class="flex-1 flex justify-evenly mt-4 ">
<div class="footer-card">
<h1>Serverstatus</h1>
</div>
<div class="footer-card">
<h1>Links</h1>
2023-10-08 14:34:38 +02:00
<a href={l("/")}>{t("navbar.links.home.title")}</a>
2023-10-01 10:04:04 +02:00
<a href={l("/join")}>Join Now</a>
<a href={l("/")}>Announcements</a>
<a href={l("/")}>Gamemodes</a>
<a href={l("/")}>Stats</a>
<a href={l("/")}>Code of conduct</a>
<a href={l("/")}>Privacy Policy</a>
<a href={l("/")}>Imprint</a>
</div>
<div class="footer-card">
<h1>Social Media</h1>
2023-10-08 14:34:38 +02:00
<a class="flex" href="/"><YoutubeSolid class="mr-2" /> YouTube</a>
2023-10-01 10:04:04 +02:00
</div>
</div>
2023-10-08 14:34:38 +02:00
<span class="text-sm text-white text-center">© SteamWar.de - {new Date().getFullYear()}</span>
2023-10-01 10:04:04 +02:00
</footer>
2023-09-24 16:33:14 +02:00
</div>
</Fragment>
</Basic>
<style>
2023-10-01 10:04:04 +02:00
.footer-card {
@apply w-36 text-gray-400 flex flex-col;
>h1 {
@apply text-xl font-bold text-gray-100;
}
>a {
@apply underline;
}
}
2023-09-24 16:33:14 +02:00
.scrolled {
@apply text-white;
&::before {
@apply scale-y-100;
}
}
2023-10-01 10:04:04 +02:00
.match {
width: clamp(75%, 25rem, 100vw);
}
2023-09-24 16:33:14 +02:00
</style>