This commit is contained in:
2026-02-27 21:48:31 +01:00
parent 957ce13995
commit 8287def29e
7 changed files with 32 additions and 7 deletions

View File

@@ -2,7 +2,9 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" href="/ragview/favicon.ico" sizes="any">
<link rel="icon" href="/ragview/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/ragview/favicon-192.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RAG by Balex</title>
</head>

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
rag-view/public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 556 B

View File

@@ -0,0 +1,24 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<defs>
<linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#6366f1"/>
<stop offset="100%" style="stop-color:#8b5cf6"/>
</linearGradient>
</defs>
<rect width="512" height="512" rx="96" fill="url(#bg)"/>
<!-- Document icon -->
<rect x="140" y="80" width="200" height="260" rx="16" fill="white" opacity="0.95"/>
<rect x="176" y="130" width="128" height="12" rx="6" fill="#a5b4fc"/>
<rect x="176" y="160" width="100" height="12" rx="6" fill="#a5b4fc"/>
<rect x="176" y="190" width="116" height="12" rx="6" fill="#a5b4fc"/>
<rect x="176" y="220" width="80" height="12" rx="6" fill="#a5b4fc"/>
<rect x="176" y="250" width="128" height="12" rx="6" fill="#a5b4fc"/>
<rect x="176" y="280" width="60" height="12" rx="6" fill="#a5b4fc"/>
<!-- Magnifying glass -->
<circle cx="340" cy="340" r="72" fill="none" stroke="white" stroke-width="24" opacity="0.95"/>
<line x1="390" y1="392" x2="440" y2="442" stroke="white" stroke-width="28" stroke-linecap="round" opacity="0.95"/>
<!-- AI sparkle -->
<circle cx="310" cy="320" r="8" fill="#fbbf24"/>
<circle cx="340" cy="300" r="5" fill="#fbbf24"/>
<circle cx="360" cy="340" r="6" fill="#fbbf24"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -1,6 +1,6 @@
import { useState, useEffect } from "react";
import { useDispatch, useSelector } from "react-redux";
import { useNavigate } from "react-router-dom";
import { useNavigate, Link } from "react-router-dom";
import { clearError } from "../features/slices/details-slice";
import fetchLoginUser from "../features/fetch-async/fetchLoginUser";
@@ -121,12 +121,12 @@ function LoginPage() {
<p className="mt-6 text-center text-sm text-slate-400">
Don't have an account?{" "}
<a
href="/register"
className="text-indigo-400 hover:text-indigo-300 transition-colors"
<Link
to="/register"
className="text-indigo-400 hover:text-indigo-300 transition-colors"
>
Register
</a>
</Link>
</p>
</div>
</div>