feat: add sblogo and update login view
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
alexandrump
2026-04-22 02:07:05 +02:00
parent 975efc30a4
commit 7f0843018c
3 changed files with 2 additions and 2 deletions

BIN
public/sblogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 731 KiB

BIN
src/assets/sblogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 731 KiB

View File

@@ -3,7 +3,7 @@ import { ref } from "vue";
import { useRouter } from "vue-router";
import { useAuthStore } from "../stores/auth";
import { LogIn, ShieldCheck } from "lucide-vue-next";
import logoUrl from "../assets/SB Sports.jpg";
import logoUrl from "../assets/sblogo.png";
const router = useRouter();
const auth = useAuthStore();
@@ -32,7 +32,7 @@ async function handleLogin() {
<div class="bg-white rounded-2xl shadow-2xl w-full max-w-md p-10">
<!-- Logo -->
<div class="flex flex-col items-center mb-8">
<img :src="logoUrl" alt="SB Sport" class="h-20 w-auto object-contain mb-2" />
<img :src="logoUrl" alt="SB Sport" class="h-32 w-auto object-contain mb-2" />
</div>
<!-- Form -->