22 lines
712 B
Plaintext
22 lines
712 B
Plaintext
---
|
|
import GiteaLink from "./links/GiteaLink.astro"
|
|
import PajamasIcon from "./icons/PajamasIcon.astro"
|
|
import ExternalLink from "./links/ExternalLink.astro"
|
|
import LanguageButtonGroup from "./LanguageButtonGroup.astro"
|
|
import * as m from "@/paraglide/messages"
|
|
|
|
const { GIT_URL, STATUS_URL } = import.meta.env
|
|
---
|
|
|
|
<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 />
|
|
</div>
|