File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
frontend/src/components/Layout Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 11import Neo4jLogoBW from '../../logo.svg' ;
22import Neo4jLogoColor from '../../logo-color.svg' ;
33import { MoonIconOutline , SunIconOutline , Cog8ToothIconOutline } from '@neo4j-ndl/react/icons' ;
4- import { Typography , IconButton } from '@neo4j-ndl/react' ;
4+ import { Typography , IconButton , Button } from '@neo4j-ndl/react' ;
55
66export default function Header ( { themeMode, toggleTheme } : { themeMode : string ; toggleTheme : ( ) => void } ) {
77 return (
@@ -35,6 +35,7 @@ export default function Header({ themeMode, toggleTheme }: { themeMode: string;
3535 className = 'inline-flex gap-x-1'
3636 style = { { display : 'flex' , flexGrow : 0 , alignItems : 'center' , gap : '4px' } }
3737 >
38+ < Button href = 'https://github.com/neo4j-labs/llm-graph-builder/issues' fill = 'outlined' target = '_blank' > Github Issues</ Button >
3839 < IconButton aria-label = 'Toggle Dark mode' clean size = 'large' onClick = { toggleTheme } >
3940 { themeMode === 'dark' ? (
4041 < span role = 'img' aria-label = 'sun' >
You can’t perform that action at this time.
0 commit comments