fix: use main color
Some checks are pending
Deploy / deploy (push) Waiting to run

This commit is contained in:
Benno Tielen 2026-03-12 16:49:45 +01:00
parent cbdec5e61a
commit 68aa84283f

View file

@ -10,6 +10,7 @@ import { Fragment, useCallback, useState } from 'react'
import { MegaMenu } from '@/components/MegaMenu/MegaMenu'
import { CollapsibleArrow } from '@/components/CollapsibleArrow/CollapsibleArrow'
import Link from 'next/link'
import { siteConfig } from '@/config/site'
/**
* Represents a simple item component.
@ -156,7 +157,7 @@ export const Menu = ({menu}: MenuProps) => {
href={"/"} onClick={() => setDisplayMenuMobile(false)}
className={styles.logoLink}
>
<Logo withText={false} height={30} color={"#426156"}/>
<Logo withText={false} height={30} color={siteConfig.baseColor}/>
</Link>
<Image
src={MenuIcon}