Update logo from png to svg
Browse files- lightrag/api/webui/assets/{index-BLBnmXUl.js → index-Bj1VgJta.js} +0 -0
- lightrag/api/webui/index.html +0 -0
- lightrag/api/webui/logo.png +0 -3
- lightrag/api/webui/logo.svg +0 -0
- lightrag_webui/index.html +1 -1
- lightrag_webui/public/logo.png +0 -3
- lightrag_webui/public/logo.svg +1 -0
- lightrag_webui/src/features/LoginPage.tsx +1 -1
- lightrag_webui/src/features/SiteHeader.tsx +0 -1
lightrag/api/webui/assets/{index-BLBnmXUl.js → index-Bj1VgJta.js}
RENAMED
Binary files a/lightrag/api/webui/assets/index-BLBnmXUl.js and b/lightrag/api/webui/assets/index-Bj1VgJta.js differ
|
|
lightrag/api/webui/index.html
CHANGED
Binary files a/lightrag/api/webui/index.html and b/lightrag/api/webui/index.html differ
|
|
lightrag/api/webui/logo.png
DELETED
Git LFS Details
|
lightrag/api/webui/logo.svg
ADDED
|
lightrag_webui/index.html
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
6 |
<meta http-equiv="Pragma" content="no-cache" />
|
7 |
<meta http-equiv="Expires" content="0" />
|
8 |
-
<link rel="icon" type="image/svg+xml" href="logo.
|
9 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
10 |
<title>Lightrag</title>
|
11 |
</head>
|
|
|
5 |
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
6 |
<meta http-equiv="Pragma" content="no-cache" />
|
7 |
<meta http-equiv="Expires" content="0" />
|
8 |
+
<link rel="icon" type="image/svg+xml" href="logo.svg" />
|
9 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
10 |
<title>Lightrag</title>
|
11 |
</head>
|
lightrag_webui/public/logo.png
DELETED
Git LFS Details
|
lightrag_webui/public/logo.svg
ADDED
|
lightrag_webui/src/features/LoginPage.tsx
CHANGED
@@ -153,7 +153,7 @@ const LoginPage = () => {
|
|
153 |
<CardHeader className="flex items-center justify-center space-y-2 pb-8 pt-6">
|
154 |
<div className="flex flex-col items-center space-y-4">
|
155 |
<div className="flex items-center gap-3">
|
156 |
-
<img src="logo.
|
157 |
<ZapIcon className="size-10 text-emerald-400" aria-hidden="true" />
|
158 |
</div>
|
159 |
<div className="text-center space-y-2">
|
|
|
153 |
<CardHeader className="flex items-center justify-center space-y-2 pb-8 pt-6">
|
154 |
<div className="flex flex-col items-center space-y-4">
|
155 |
<div className="flex items-center gap-3">
|
156 |
+
<img src="logo.svg" alt="LightRAG Logo" className="h-12 w-12" />
|
157 |
<ZapIcon className="size-10 text-emerald-400" aria-hidden="true" />
|
158 |
</div>
|
159 |
<div className="text-center space-y-2">
|
lightrag_webui/src/features/SiteHeader.tsx
CHANGED
@@ -71,7 +71,6 @@ export default function SiteHeader() {
|
|
71 |
<div className="min-w-[200px] w-auto flex items-center">
|
72 |
<a href={webuiPrefix} className="flex items-center gap-2">
|
73 |
<ZapIcon className="size-4 text-emerald-400" aria-hidden="true" />
|
74 |
-
{/* <img src='/logo.png' className="size-4" /> */}
|
75 |
<span className="font-bold md:inline-block">{SiteInfo.name}</span>
|
76 |
</a>
|
77 |
{webuiTitle && (
|
|
|
71 |
<div className="min-w-[200px] w-auto flex items-center">
|
72 |
<a href={webuiPrefix} className="flex items-center gap-2">
|
73 |
<ZapIcon className="size-4 text-emerald-400" aria-hidden="true" />
|
|
|
74 |
<span className="font-bold md:inline-block">{SiteInfo.name}</span>
|
75 |
</a>
|
76 |
{webuiTitle && (
|