export interface MenuItem {
  label: string;
  href: string;
}

export interface MobileMenuData {
  menuItems: MenuItem[];
  closeIcon: string;
}

export const mobileMenuData: MobileMenuData = {
  menuItems: [
    { label: "Home", href: "/" },
    { label: "About", href: "/about" },
    { label: "Solutions", href: "/solutions" },
    { label: "Works", href: "/works" },
    { label: "Resources", href: "/resources" },
    { label: "Contact", href: "/contact" },
  ],
  closeIcon: "/assets/images/icon/xmark2.svg",
};
