fix: path
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"navigation": {
|
||||
"dashboards": "لوحات القيادة",
|
||||
"crm": "إدارة علاقات العملاء",
|
||||
"analytics": "تحليلات",
|
||||
"eCommerce": "التجارة الإلكترونية",
|
||||
"stock": "المخزون",
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"navigation": {
|
||||
"dashboards": "Dashboards",
|
||||
"crm": "CRM",
|
||||
"analytics": "Analytics",
|
||||
"eCommerce": "eCommerce",
|
||||
"stock": "Stock",
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"navigation": {
|
||||
"dashboards": "Tableaux de bord",
|
||||
"crm": "GRC",
|
||||
"analytics": "Analytique",
|
||||
"eCommerce": "commerce électronique",
|
||||
"stock": "Stock",
|
||||
|
||||
@@ -10,9 +10,9 @@ const horizontalMenuData = (dictionary: Awaited<ReturnType<typeof getDictionary>
|
||||
children: [
|
||||
// This is how you will normally render menu item
|
||||
{
|
||||
label: dictionary['navigation'].crm,
|
||||
label: dictionary['navigation'].overview,
|
||||
icon: 'tabler-chart-pie-2',
|
||||
href: '/dashboards/crm'
|
||||
href: '/dashboards/overview'
|
||||
},
|
||||
{
|
||||
label: dictionary['navigation'].analytics,
|
||||
|
||||
@@ -14,9 +14,9 @@ const verticalMenuData = (dictionary: Awaited<ReturnType<typeof getDictionary>>)
|
||||
children: [
|
||||
// This is how you will normally render menu item
|
||||
{
|
||||
label: dictionary['navigation'].crm,
|
||||
label: dictionary['navigation'].overview,
|
||||
icon: 'tabler-circle',
|
||||
href: '/dashboards/crm'
|
||||
href: '/dashboards/overview'
|
||||
},
|
||||
{
|
||||
label: dictionary['navigation'].analytics,
|
||||
|
||||
@@ -11,8 +11,8 @@ type SearchData = {
|
||||
const data: SearchData[] = [
|
||||
{
|
||||
id: '1',
|
||||
name: 'CRM Dashboard',
|
||||
url: '/dashboards/crm',
|
||||
name: 'Overview Dashboard',
|
||||
url: '/dashboards/overview',
|
||||
icon: 'tabler-chart-pie-2',
|
||||
section: 'Dashboards'
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user