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

export interface MobileMenuData {
  closeButton: {
    icon: string;
    alt: string;
  };
  menuItems: MenuItem[];
}

export const mobileMenuData: MobileMenuData = {
  closeButton: {
    icon: "/assets/images/icon/xmark2.svg",
    alt: "Close Menu",
  },
  menuItems: [
    { label: "Home", href: "/" },
    { label: "About", href: "/about" },
    { label: "Solutions", href: "/solutions" },
    { label: "Pricing", href: "/pricing" },
    { label: "News", href: "/blog" },
    { label: "Contact", href: "/contact" },
  ],
};
