Spaces:
Running
Running
Update frontend/src/Layout.jsx
Browse files- frontend/src/Layout.jsx +6 -3
frontend/src/Layout.jsx
CHANGED
|
@@ -4,7 +4,6 @@ import React, { useState } from "react";
|
|
| 4 |
import { Link } from "react-router-dom";
|
| 5 |
import { createPageUrl } from "./utils";
|
| 6 |
import {
|
| 7 |
-
ScanText,
|
| 8 |
LayoutDashboard,
|
| 9 |
History as HistoryIcon,
|
| 10 |
ChevronLeft,
|
|
@@ -37,8 +36,12 @@ export default function Layout({ children, currentPageName }) {
|
|
| 37 |
)}
|
| 38 |
>
|
| 39 |
<Link to={createPageUrl("Dashboard")} className="flex items-center gap-3">
|
| 40 |
-
<div className="h-9 w-9
|
| 41 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
</div>
|
| 43 |
{!collapsed && (
|
| 44 |
<div className="flex flex-col">
|
|
|
|
| 4 |
import { Link } from "react-router-dom";
|
| 5 |
import { createPageUrl } from "./utils";
|
| 6 |
import {
|
|
|
|
| 7 |
LayoutDashboard,
|
| 8 |
History as HistoryIcon,
|
| 9 |
ChevronLeft,
|
|
|
|
| 36 |
)}
|
| 37 |
>
|
| 38 |
<Link to={createPageUrl("Dashboard")} className="flex items-center gap-3">
|
| 39 |
+
<div className="h-9 w-9 flex items-center justify-center flex-shrink-0">
|
| 40 |
+
<img
|
| 41 |
+
src="/logo.png"
|
| 42 |
+
alt="EZOFIS AI Logo"
|
| 43 |
+
className="h-full w-full object-contain"
|
| 44 |
+
/>
|
| 45 |
</div>
|
| 46 |
{!collapsed && (
|
| 47 |
<div className="flex flex-col">
|