diff --git a/src/assets/app-logo.jpg b/src/assets/app-logo.jpg new file mode 100644 index 0000000..4322454 Binary files /dev/null and b/src/assets/app-logo.jpg differ diff --git a/src/components/layout/AppLayout.tsx b/src/components/layout/AppLayout.tsx index 289afc6..572df41 100644 --- a/src/components/layout/AppLayout.tsx +++ b/src/components/layout/AppLayout.tsx @@ -1,5 +1,6 @@ import { getCurrentWindow } from "@tauri-apps/api/window"; import { Outlet } from "react-router-dom"; +import appLogo from "../../assets/app-logo.jpg"; import NotificationCenter from "./NotificationCenter"; import Sidebar from "./Sidebar"; import WindowControls from "./WindowControls"; @@ -26,9 +27,14 @@ export default function AppLayout() { void startDragging(); } }} - className="min-w-0 flex-1 select-none text-sm font-semibold text-gray-700" + className="min-w-0 flex flex-1 items-center gap-2 select-none text-sm font-semibold text-gray-700" > - Orchai + Orchai logo + Orchai diff --git a/src/components/layout/Sidebar.tsx b/src/components/layout/Sidebar.tsx index 7d1d943..82b7b69 100644 --- a/src/components/layout/Sidebar.tsx +++ b/src/components/layout/Sidebar.tsx @@ -1,5 +1,6 @@ import { useEffect, useState } from "react"; import { Link, useParams } from "react-router-dom"; +import appLogo from "../../assets/app-logo.jpg"; import { listProjects } from "../../lib/api"; import type { Project } from "../../lib/types"; @@ -23,7 +24,14 @@ export default function Sidebar() { return (