feat: Updated login bg
Server Deploy / deploy (push) Failing after 1m0s

This commit is contained in:
2026-07-24 11:02:44 +01:00
parent f0547317f7
commit accf7493e9
3 changed files with 298 additions and 4 deletions
+5 -3
View File
@@ -5,6 +5,7 @@ import { useMutation } from "@tanstack/react-query";
import { auth } from "@/lib/api";
import { Button, Card } from "@/components/ui";
import { Logo } from "@/components/Logo";
import { NetworkBackground } from "@/components/NetworkBackground";
export default function LoginPage() {
const [email, setEmail] = useState("");
@@ -45,11 +46,12 @@ export default function LoginPage() {
}
return (
<div className="flex min-h-screen items-center justify-center bg-background p-4">
<div className="w-full max-w-sm">
<div className="relative flex min-h-screen items-center justify-center bg-background p-4">
<NetworkBackground />
<div className="relative w-full max-w-sm">
<div className="mb-8 flex flex-col items-center gap-3">
<Logo className="h-11 w-auto text-text-primary" />
<h1 className="text-sxl font-semibold text-text-primary">Sign in to Vantage</h1>
<h1 className="text-2xl font-semibold text-text-primary">Sign in to Vantage</h1>
<h4 className="font-semibold text-text-secondary">Organisation: {orgName}</h4>
</div>