Update login page logo from SVG to PNG format

This commit is contained in:
marshal
2026-06-19 00:47:46 +03:00
parent 8264df133f
commit 3f81f45c6d
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import { useLocation, useNavigate } from "react-router-dom";
import useAuth from "@/hooks/useAuth";
import AuthShell, { fieldClass, primaryButtonClass } from "@/components/auth/AuthShell";
const EDR_LOGO = "/assets/logo.svg";
const EDR_LOGO = "/assets/edr-logo.png";
type LoginMethod = "email" | "phone";

View File

@@ -10,7 +10,7 @@ import useAuth from "@/hooks/useAuth";
import type { SignupPayload } from "@/types/auth";
import AuthShell, { fieldClass, primaryButtonClass } from "@/components/auth/AuthShell";
const EDR_LOGO = "/assets/logo.svg";
const EDR_LOGO = "/assets/edr-logo.png";
const passwordRequirements = [
{ label: "At least 8 characters", test: (v: string) => v.length >= 8 },