Files
arbeitszeitmessung/Backend/templates/headerComponent.templ
2025-10-27 22:53:07 +01:00

15 lines
343 B
Plaintext

package templates
templ headerComponent() {
<div class="flex flex-row justify-between md:mx-[10%] py-2 items-center">
<a href="/time">Zeitverwaltung</a>
<a href="/team">Abrechnung</a>
<a href="/pdf">PDF</a>
if true {
<a href="/presence">Anwesenheit</a>
}
<a href="/user/settings">Einstellungen</a>
@LogoutButton()
</div>
}