'use client'; import React from 'react'; import { useSelectedLayoutSegment } from 'next/navigation'; import { Link } from '../../../navigation'; import { HeaderAuthLinks } from './HeaderAuthLinks'; type HeaderMenuProps = { locale: string; linkConfig: { path: string, title: string }[]; }; export const HeaderMenu = ({ locale, linkConfig }: HeaderMenuProps) => { const selectedLayoutSegment = useSelectedLayoutSegment(); const pathname = selectedLayoutSegment || ''; return (