fix: path

This commit is contained in:
ferdiansyah783
2025-08-09 22:38:12 +07:00
parent 67b747f0ff
commit de93de2e6d
16 changed files with 31 additions and 32 deletions
-1
View File
@@ -1,7 +1,6 @@
{
"navigation": {
"dashboards": "لوحات القيادة",
"crm": "إدارة علاقات العملاء",
"analytics": "تحليلات",
"eCommerce": "التجارة الإلكترونية",
"stock": "المخزون",
-1
View File
@@ -1,7 +1,6 @@
{
"navigation": {
"dashboards": "Dashboards",
"crm": "CRM",
"analytics": "Analytics",
"eCommerce": "eCommerce",
"stock": "Stock",
-1
View File
@@ -1,7 +1,6 @@
{
"navigation": {
"dashboards": "Tableaux de bord",
"crm": "GRC",
"analytics": "Analytique",
"eCommerce": "commerce électronique",
"stock": "Stock",
+2 -2
View File
@@ -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,
+2 -2
View File
@@ -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,
+2 -2
View File
@@ -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'
},