style: make footer even more minimal and elegant
Some checks failed
Build MIPS Binary / build (push) Has been cancelled

This commit is contained in:
spinline
2026-02-13 14:03:54 +03:00
parent 80f9e5cda2
commit 89f0a5423d

View File

@@ -6,24 +6,12 @@ pub fn Footer() -> impl IntoView {
let year = chrono::Local::now().format("%Y").to_string(); let year = chrono::Local::now().format("%Y").to_string();
view! { view! {
<footer class="mt-auto px-4 py-6 md:px-8"> <footer class="mt-auto pb-6 px-4">
<Separator class="mb-6 opacity-50" /> <Separator class="mb-4 opacity-30" />
<div class="flex flex-col items-center justify-between gap-4 md:flex-row"> <div class="flex items-center justify-center gap-2 text-[10px] uppercase tracking-widest text-muted-foreground/60 font-medium">
<p class="text-center text-sm leading-loose text-muted-foreground md:text-left"> <span>{format!("© {} VibeTorrent", year)}</span>
{format!("© {} VibeTorrent. Tüm hakları saklıdır.", year)}
</p>
<div class="flex items-center gap-4 text-sm font-medium text-muted-foreground">
<a
href="https://git.karatatar.com/admin/vibetorrent"
target="_blank"
rel="noreferrer"
class="underline underline-offset-4 hover:text-foreground transition-colors"
>
"Gitea"
</a>
<span class="size-1 rounded-full bg-muted-foreground/30" /> <span class="size-1 rounded-full bg-muted-foreground/30" />
<span class="text-[10px] tracking-widest uppercase opacity-70">"v3.0.0-beta"</span> <span>"v3.0.0-beta"</span>
</div>
</div> </div>
</footer> </footer>
} }