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-06 13:27:18 +02:00
|
|
|
import * as m from "@/paraglide/messages"
|
2024-10-09 20:33:18 +02:00
|
|
|
|
2024-10-12 18:29:44 +02:00
|
|
|
const { GIT_URL, STATUS_URL } = import.meta.env
|
2024-09-25 22:20:47 +02:00
|
|
|
---
|
|
|
|
|
2024-10-12 18:29:44 +02:00
|
|
|
<div class="divider" />
|
|
|
|
<div class="py-5 flex flex-row gap-1 justify-around w-full items-center">
|
|
|
|
<div>
|
|
|
|
<GiteaLink href={`${GIT_URL}/martials/martials.no`} />
|
|
|
|
<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>
|