ishaq101 commited on
Commit
402c8ba
Β·
1 Parent(s): aa58ac1

update logo

Browse files
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: πŸ“š
4
  colorFrom: blue
5
  colorTo: yellow
6
  sdk: docker
7
- pinned: false
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.jpg" />
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.jpg";
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.jpg";
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.jpg";
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 {