2024-09-25 22:20:47 +02:00
|
|
|
---
|
|
|
|
import GiteaLink from "./links/GiteaLink.astro"
|
2024-10-06 13:27:18 +02:00
|
|
|
import PajamasIcon from "./icons/PajamasIcon.astro"
|
2024-10-12 18:29:44 +02:00
|
|
|
import ExternalLink from "./links/ExternalLink.astro"
|
|
|
|
import LanguageButtonGroup from "./LanguageButtonGroup.astro"
|
2024-10-20 12:05:32 +02:00
|
|
|
import { GIT_URL, STATUS_URL } from "astro:env/client"
|
2024-10-06 13:27:18 +02:00
|
|
|
import * as m from "@/paraglide/messages"
|
2024-10-09 20:33:18 +02:00
|
|
|
|
2024-10-20 12:05:32 +02:00
|
|
|
const giteaLink = `${GIT_URL}/martials/martials.no`
|
2024-09-25 22:20:47 +02:00
|
|
|
---
|
|
|
|
|
2025-02-15 18:01:17 +01:00
|
|
|
<div class="divider bg-inherit"></div>
|
|
|
|
<div
|
|
|
|
class="py-5 flex flex-row gap-1 justify-around w-full items-center bg-inherit"
|
|
|
|
>
|
2024-10-12 18:29:44 +02:00
|
|
|
<div>
|
2024-10-20 12:05:32 +02:00
|
|
|
<GiteaLink href={giteaLink} />
|
2024-10-12 18:29:44 +02:00
|
|
|
<ExternalLink href={STATUS_URL} class="flex items-center" title="Status">
|
|
|
|
<PajamasIcon name="pajamas:status-health" class="w-6 h-6 mr-2" />
|
|
|
|
{m.status()}
|
|
|
|
</ExternalLink>
|
|
|
|
</div>
|
|
|
|
<LanguageButtonGroup />
|
2024-09-25 22:20:47 +02:00
|
|
|
</div>
|