import { IconType } from "react-icons";
import { FaImage, FaPaintbrush, FaGear } from "react-icons/fa6";
import { FaHistory } from "react-icons/fa";
export interface NavItem {
  label: string;
  path: string;
  Icon: IconType;
}

const navItems: Array<NavItem> = [
  {
    label: "Home",
    path: "/",
    Icon: FaImage,
  },
  {
    label: "Modes",
    path: "/modes",
    Icon: FaPaintbrush,
  },
  {
    label: "History",
    path: "/history",
    Icon: FaHistory,
  },
  {
    label: "Settings",
    path: "/settings",
    Icon: FaGear,
  },
];

export default navItems;
