Skip to content

Commit 45fecfa

Browse files
Added pictures from submodules
1 parent 6a8f49c commit 45fecfa

File tree

6 files changed

+33
-5
lines changed

6 files changed

+33
-5
lines changed

assets/gates-icon.png

30.4 KB
Loading

assets/kern-icon.png

30.8 KB
Loading

assets/kern-icon.svg

Lines changed: 24 additions & 0 deletions
Loading

assets/refinery-icon.png

36.4 KB
Loading

assets/workflow-icon.png

28.2 KB
Loading

components/LayoutDropdown.tsx

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ import { Tooltip } from '@nextui-org/react'
44
import Image from 'next/image';
55
import { combineClassNames } from '../../javascript-functions/general';
66
import { LayoutDropdownProps } from '../types/dropdown';
7+
import kernLogo from '../assets/kern-icon.png';
8+
import refineryLogo from '../assets/refinery-icon.png';
9+
import gatesLogo from '../assets/gates-icon.png';
10+
import workflowLogo from '../assets/workflow-icon.png';
711

812
export default function LayoutDropdown(props: LayoutDropdownProps) {
913
return (
@@ -14,7 +18,7 @@ export default function LayoutDropdown(props: LayoutDropdownProps) {
1418
<div
1519
className='cursor-pointer group flex items-center p-2 text-sm font-medium rounded-md border border-gray-200 hover:bg-gray-50'
1620
>
17-
<Image src="/workflow/kern-icon.png" width="32" height="32" />
21+
<Image src={kernLogo} width="32" height="32" alt='Kern' />
1822
</div>
1923
</Tooltip>
2024
</Menu.Button>
@@ -42,7 +46,7 @@ export default function LayoutDropdown(props: LayoutDropdownProps) {
4246
'group flex items-center px-4 py-2 text-sm cursor-pointer font-mono'
4347
)}
4448
>
45-
<Image src="/workflow/kern-icon.png" width="21" height="21" />
49+
<Image src={kernLogo} width="21" height="21" alt='cockpit' />
4650
<span className='ml-2'>cockpit</span>
4751
</a>
4852
)}
@@ -60,7 +64,7 @@ export default function LayoutDropdown(props: LayoutDropdownProps) {
6064
'group flex items-center px-4 py-2 text-sm cursor-pointer font-mono'
6165
)}
6266
>
63-
<Image src="/workflow/refinery-icon.png" width="21" height="21" />
67+
<Image src={refineryLogo} width="21" height="21" alt='refinery' />
6468
<span className='ml-2'>refinery</span>
6569
</a>
6670
)}
@@ -79,7 +83,7 @@ export default function LayoutDropdown(props: LayoutDropdownProps) {
7983
'group flex items-center px-4 py-2 text-sm cursor-pointer font-mono'
8084
)}
8185
>
82-
<Image src="/workflow/gates-icon.png" width="21" height="21" />
86+
<Image src={gatesLogo} width="21" height="21" alt='gates' />
8387
<span className='ml-2'>gates</span>
8488
</a>
8589
)}
@@ -98,7 +102,7 @@ export default function LayoutDropdown(props: LayoutDropdownProps) {
98102
)}
99103
>
100104
<Image
101-
src="/gates/workflow-icon.png"
105+
src={workflowLogo}
102106
width={21}
103107
height={21}
104108
alt="workflow"

0 commit comments

Comments
 (0)