// Inline the type definition if HeaderProps is unavailable
type HeaderProps = {
  menuItems: typeof menuItemsProps;
  contactInfo: {
    title: string;
    phone: string;
  };
};

// Correct import paths
import { menuItemsProps } from '../menu';

export const headerData: HeaderProps = {
  menuItems: menuItemsProps,
  contactInfo: {
    title: 'Need help?',
    phone: '+88 02-41080166',
  },
};
