UNPKG

create-nova-vite-template

Version:

This is a dashboard template built with React and Vite. It provides a modern and responsive user interface for building web applications.

43 lines (40 loc) 1.41 kB
import i18n from "@/i18n"; export const generalLinks = { seller: [ { icon: "home", label: i18n.t("Home"), href: "/" }, { icon: "package", label: i18n.t("Products"), href: "/products" }, { icon: "orders", label: i18n.t("Orders"), href: "/orders" }, { icon: "promo", label: i18n.t("Promo Codes"), href: "/promo-codes" }, { icon: "brand-profile", label: i18n.t("Brand Profile"), href: "/brand-profile", }, ], admin: [ { icon: "home", label: i18n.t("Home"), href: "/" }, { icon: "orders", label: i18n.t("Orders"), href: "/orders" }, { icon: "package", label: i18n.t("Products"), href: "/products" }, { icon: "brand-profile", label: i18n.t("Merchants"), href: "/merchants" }, { icon: "user", label: i18n.t("Users"), href: "/users" }, { icon: "bell", label: i18n.t("Notifications"), href: "/notifications", }, { icon: "promo", label: i18n.t("Promo Codes"), href: "/promo-codes" }, { icon: "categories", label: i18n.t("Categories"), href: "/categories" }, { icon: "message", label: i18n.t("Messages"), href: "/messages" }, ], }; export const supportLinks = { seller: [ { icon: "contact-us", label: i18n.t("contact_us_main_title"), href: "/contact-us", }, { icon: "faq", label: i18n.t("FAQ"), href: "/Faqs" }, ], admin: [], };