Spaces:
Running
Running
update logo
Browse files- README.md +1 -1
- index.html +1 -1
- public/maintiva-logo.jpg +0 -0
- public/maintiva-logo.png +0 -0
- src/app/components/Login.tsx +1 -1
- src/app/components/chat/ChatWindow.tsx +1 -1
- src/app/components/chat/Sidebar.tsx +1 -1
README.md
CHANGED
|
@@ -4,7 +4,7 @@ emoji: π
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: yellow
|
| 6 |
sdk: docker
|
| 7 |
-
pinned:
|
| 8 |
short_description: frontend for eksternal demo shared.
|
| 9 |
---
|
| 10 |
|
|
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: yellow
|
| 6 |
sdk: docker
|
| 7 |
+
pinned: true
|
| 8 |
short_description: frontend for eksternal demo shared.
|
| 9 |
---
|
| 10 |
|
index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
<head>
|
| 5 |
<meta charset="UTF-8" />
|
| 6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 7 |
-
<link rel="icon" type="image/jpeg" href="/maintiva-logo.
|
| 8 |
<title>Maintiva Agent</title>
|
| 9 |
</head>
|
| 10 |
|
|
|
|
| 4 |
<head>
|
| 5 |
<meta charset="UTF-8" />
|
| 6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 7 |
+
<link rel="icon" type="image/jpeg" href="/maintiva-logo.png" />
|
| 8 |
<title>Maintiva Agent</title>
|
| 9 |
</head>
|
| 10 |
|
public/maintiva-logo.jpg
DELETED
|
Binary file (24 kB)
|
|
|
public/maintiva-logo.png
ADDED
|
src/app/components/Login.tsx
CHANGED
|
@@ -2,7 +2,7 @@ import { useState } from "react";
|
|
| 2 |
import { useNavigate } from "react-router";
|
| 3 |
import { LogIn, Loader2, Eye, EyeOff } from "lucide-react";
|
| 4 |
import { login } from "../../services/api";
|
| 5 |
-
import logoUrl from "../../assets/maintiva-logo.
|
| 6 |
|
| 7 |
export default function Login() {
|
| 8 |
const [email, setEmail] = useState("");
|
|
|
|
| 2 |
import { useNavigate } from "react-router";
|
| 3 |
import { LogIn, Loader2, Eye, EyeOff } from "lucide-react";
|
| 4 |
import { login } from "../../services/api";
|
| 5 |
+
import logoUrl from "../../assets/maintiva-logo.png";
|
| 6 |
|
| 7 |
export default function Login() {
|
| 8 |
const [email, setEmail] = useState("");
|
src/app/components/chat/ChatWindow.tsx
CHANGED
|
@@ -3,7 +3,7 @@ import { motion } from "motion/react";
|
|
| 3 |
import { Bot } from "lucide-react";
|
| 4 |
import type { Message } from "./types";
|
| 5 |
import MessageBubble from "./MessageBubble";
|
| 6 |
-
import maintivalogo from "@/assets/maintiva-logo.
|
| 7 |
|
| 8 |
const WELCOME_FEATURES = [
|
| 9 |
{ emoji: "π", title: "Data Analysis", desc: "Get actionable insights and root cause" },
|
|
|
|
| 3 |
import { Bot } from "lucide-react";
|
| 4 |
import type { Message } from "./types";
|
| 5 |
import MessageBubble from "./MessageBubble";
|
| 6 |
+
import maintivalogo from "@/assets/maintiva-logo.png";
|
| 7 |
|
| 8 |
const WELCOME_FEATURES = [
|
| 9 |
{ emoji: "π", title: "Data Analysis", desc: "Get actionable insights and root cause" },
|
src/app/components/chat/Sidebar.tsx
CHANGED
|
@@ -9,7 +9,7 @@ import {
|
|
| 9 |
Settings,
|
| 10 |
LogOut,
|
| 11 |
} from "lucide-react";
|
| 12 |
-
import maintivalogoUrl from "../../../assets/maintiva-logo.
|
| 13 |
import type { ChatSession, StoredUser } from "./types";
|
| 14 |
|
| 15 |
interface SidebarProps {
|
|
|
|
| 9 |
Settings,
|
| 10 |
LogOut,
|
| 11 |
} from "lucide-react";
|
| 12 |
+
import maintivalogoUrl from "../../../assets/maintiva-logo.png";
|
| 13 |
import type { ChatSession, StoredUser } from "./types";
|
| 14 |
|
| 15 |
interface SidebarProps {
|