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

update logo

Browse files
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.png";
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
+ const logoUrl = "/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.png";
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
+ const maintivalogo = "/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.png";
13
  import type { ChatSession, StoredUser } from "./types";
14
 
15
  interface SidebarProps {
 
9
  Settings,
10
  LogOut,
11
  } from "lucide-react";
12
+ const maintivalogoUrl = "/maintiva-logo.png";
13
  import type { ChatSession, StoredUser } from "./types";
14
 
15
  interface SidebarProps {