Spaces:
Sleeping
Sleeping
fix icon login
Browse files- public/logo.png +0 -0
- src/app/components/Login.tsx +2 -1
- src/assets/logo.png +0 -0
public/logo.png
CHANGED
|
Git LFS Details
|
|
src/app/components/Login.tsx
CHANGED
|
@@ -2,6 +2,7 @@ import { useState } from "react";
|
|
| 2 |
import { useNavigate } from "react-router";
|
| 3 |
import { LogIn, Loader2 } from "lucide-react";
|
| 4 |
import { login } from "../../services/api";
|
|
|
|
| 5 |
|
| 6 |
export default function Login() {
|
| 7 |
const [email, setEmail] = useState("");
|
|
@@ -176,7 +177,7 @@ export default function Login() {
|
|
| 176 |
|
| 177 |
{/* Brand logo */}
|
| 178 |
<div className="flex flex-col items-center gap-3 mb-6">
|
| 179 |
-
<img src=
|
| 180 |
<div className="text-center">
|
| 181 |
<h1 className="text-xl font-semibold text-slate-900">Welcome Back</h1>
|
| 182 |
<p className="text-slate-400 text-sm mt-0.5">Sign in to continue to your chatbot</p>
|
|
|
|
| 2 |
import { useNavigate } from "react-router";
|
| 3 |
import { LogIn, Loader2 } from "lucide-react";
|
| 4 |
import { login } from "../../services/api";
|
| 5 |
+
import logoUrl from "../../assets/logo.png";
|
| 6 |
|
| 7 |
export default function Login() {
|
| 8 |
const [email, setEmail] = useState("");
|
|
|
|
| 177 |
|
| 178 |
{/* Brand logo */}
|
| 179 |
<div className="flex flex-col items-center gap-3 mb-6">
|
| 180 |
+
<img src={logoUrl} alt="DataEyond" className="w-12 h-12 object-contain" />
|
| 181 |
<div className="text-center">
|
| 182 |
<h1 className="text-xl font-semibold text-slate-900">Welcome Back</h1>
|
| 183 |
<p className="text-slate-400 text-sm mt-0.5">Sign in to continue to your chatbot</p>
|
src/assets/logo.png
ADDED
|