@@ -20,6 +20,8 @@ import GTM from './GTM';
2020import { Button } from '@/components/ui/button' ;
2121import { Tooltip , TooltipContent , TooltipProvider , TooltipTrigger } from '@/components/ui/tooltip' ;
2222import { ThemeToggle } from './components/theme-toggle' ;
23+ import Logo from './components/logo' ;
24+
2325
2426const Chat = lazy ( ( ) => import ( './components/chat' ) . then ( mod => ( { default : mod . Chat } ) ) ) ;
2527const CodeGraph = lazy ( ( ) => import ( './components/code-graph' ) . then ( mod => ( { default : mod . CodeGraph } ) ) ) ;
@@ -383,8 +385,8 @@ export default function App() {
383385 < header className = "flex flex-col text-xl" >
384386 < div className = "flex items-center justify-between py-2 px-4 border-b border-border" >
385387 < div className = "flex gap-4 items-center" >
386- < a href = "https://www.falkordb.com" target = '_blank' rel = "noopener noreferrer" >
387- < img src = "/logo_02.svg" alt = "FalkorDB" width = { 27.73 } height = { 23.95 } />
388+ < a href = "https://www.falkordb.com" target = '_blank' rel = "noopener noreferrer" aria-label = "FalkorDB" >
389+ < Logo />
388390 </ a >
389391 < h1 className = 'font-semibold text-[22px]' >
390392 CODE GRAPH
@@ -579,11 +581,12 @@ export default function App() {
579581 </ Suspense >
580582 </ div >
581583 < div className = 'flex flex-col md:hidden h-full overflow-hidden' id = 'mobile' >
582- < header className = 'flex justify-center items-center relative bg-muted' >
583- < a href = "https://www.falkordb.com" target = '_blank' rel = "noopener noreferrer" >
584- < img style = { { width : 'auto' , height : '70px' , background : "transparent" } } src = "/code-graph-logo.svg" alt = "FalkorDB" />
584+ < header className = 'flex justify-between items-center bg-muted py-2 px-4' >
585+ < a href = "https://www.falkordb.com" target = '_blank' rel = "noopener noreferrer" aria-label = "FalkorDB" className = "flex gap-2 items-center" >
586+ < Logo width = { 40 } height = { 34 } />
587+ < span className = 'font-semibold text-[22px]' > CODE GRAPH</ span >
585588 </ a >
586- < div className = 'absolute top-4 right-4 flex gap-2' >
589+ < div className = 'flex gap-2' >
587590 < ThemeToggle />
588591 < button onClick = { ( ) => setMenuOpen ( prev => ! prev ) } >
589592 < AlignRight />
0 commit comments