export const useTaxonomies = () => {
  return useState<any[]>('taxonomies', () => ([
    {
      menu: false,
      text: 'Taxonomies',
      translatedText: '',
    },
    {
      menu: true,
      text: 'Currencies',
      translatedText: '', 
      value: 'admin_currencies_and_types', 
      link: '#', 
      icon: 'menu-icon tf-icons ti ti-coins',
      active: false,
      child: true,
      children: [
        {
          text: 'Currencies',
          translatedText: '', 
          value: 'admin_currencies', 
          link: '/admin/currencies', 
          active: false
        },
        {
          text: 'Currency Types',
          translatedText: '', 
          value: 'admin_currency_types', 
          link: '#', 
          active: false
        },
        {
          text: 'Currency Rates',
          translatedText: '', 
          value: 'admin_currency_rates', 
          link: '#', 
          active: false
        }
      ]
    },
    
    {
      menu: true,
      text: 'Countries',
      translatedText: '', 
      value: 'admin_countries_and_groups', 
      link: '#', 
      icon: 'menu-icon tf-icons ti ti-map-pin',
      active: false,
      child: true,
      children: [
        {
          text: 'Countries',
          translatedText: '', 
          value: 'admin_countries', 
          link: '/admin/countries',
          active: false
        },
        {
          text: 'Regions',
          translatedText: '', 
          value: 'admin_regions', 
          link: '/admin/regions', 
          active: false
        },
        {
          text: 'Country Groups',
          translatedText: '', 
          value: 'admin_country_groups', 
          link: '#', 
          active: false
        }
      ]
    },
    {
      menu: true,
      text: 'Print Colors',
      translatedText: '', 
      value: 'admin_print_colors', 
      link: '/admin/print-colors', 
      icon: 'menu-icon tf-icons ti ti-printer',
      active: false,
      child: false,
      children: []
    }
  ]))
}