- Smaller width of page - Center navbar - Fonts - Catppuccin Mocha colours - TODO.md - Show all uses at the same time - and more...
25 lines
776 B
Plaintext
25 lines
776 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 { GIT_URL, STATUS_URL } from "astro:env/client"
|
|
import * as m from "@/paraglide/messages"
|
|
|
|
const giteaLink = `${GIT_URL}/martials/martials.no`
|
|
---
|
|
|
|
<div class="divider bg-inherit"></div>
|
|
<div
|
|
class="py-5 flex flex-row gap-1 justify-around w-full items-center bg-inherit"
|
|
>
|
|
<div>
|
|
<GiteaLink href={giteaLink} />
|
|
<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>
|