export interface SlideData {
  id: number
  title: string
  desktopImage: string;
  mobileImage: string;
}

// export interface NavigationItem {
//   label: string
//   href: string
//   isActive?: boolean
// }

export interface BusinessDivision {
  id: string
  title: string
  image: string
  url?: string
  description?: string
}

export interface NavChildItem {
  title: string;
  image?: string;
  children?: NavChildItem[];
  url?: string;
}

export interface HoverPanel {
  title: string;
  points: NavChildItem[];
  image: string;
}

export interface NavItem {
  label: string;
  href?: string;
  hoverPanel?: {
    title: string;
    points: NavChildItem[];
    url?: string;
    image: string;
  };
}


