Skip to content

Commit 57e711a

Browse files
committed
refactored all breadcrumb menu in apps pages
1 parent 1a6b808 commit 57e711a

File tree

16 files changed

+235
-477
lines changed

16 files changed

+235
-477
lines changed

.changeset/lemon-queens-juggle.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'mantine-analytics-dashboard': patch
3+
---
4+
5+
refactored all breadcrumb menu in apps pages

app/apps/calendar/layout.tsx

Lines changed: 0 additions & 69 deletions
This file was deleted.

app/apps/calendar/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import './page.css';
1515

1616
const items = [
1717
{ title: 'Dashboard', href: PATH_DASHBOARD.default },
18+
{ title: 'Apps', href: '#' },
1819
{ title: 'Calendar', href: '#' },
1920
].map((item, index) => (
2021
<Anchor href={item.href} key={index}>

app/apps/chat/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import classes from './page.module.css';
4343

4444
const items = [
4545
{ title: 'Dashboard', href: PATH_DASHBOARD.default },
46-
{ title: 'Pages', href: '#' },
46+
{ title: 'Apps', href: '#' },
4747
{ title: 'Chat', href: '#' },
4848
].map((item, index) => (
4949
<Anchor href={item.href} key={index}>

app/apps/invoices/details/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { Metadata } from 'next';
77

88
const items = [
99
{ title: 'Dashboard', href: PATH_DASHBOARD.default },
10+
{ title: 'Apps', href: '#' },
1011
{ title: 'Invoices', href: PATH_INVOICES.invoices.all },
1112
{ title: 'Details', href: '#' },
1213
].map((item, index) => (

app/apps/invoices/list/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { useFetchData } from '@/hooks';
1919

2020
const items = [
2121
{ title: 'Dashboard', href: PATH_DASHBOARD.default },
22+
{ title: 'Apps', href: '#' },
2223
{ title: 'Invoices', href: '#' },
2324
].map((item, index) => (
2425
<Anchor href={item.href} key={index}>

app/apps/orders/layout.tsx

Lines changed: 0 additions & 69 deletions
This file was deleted.

app/apps/orders/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { useFetchData } from '@/hooks';
1717

1818
const items = [
1919
{ title: 'Dashboard', href: PATH_DASHBOARD.default },
20+
{ title: 'Apps', href: '#' },
2021
{ title: 'Orders', href: '#' },
2122
].map((item, index) => (
2223
<Anchor href={item.href} key={index}>

app/apps/profile/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import { useFetchData } from '@/hooks';
4343

4444
const items = [
4545
{ title: 'Dashboard', href: PATH_DASHBOARD.default },
46-
{ title: 'Pages', href: '#' },
46+
{ title: 'Apps', href: '#' },
4747
{ title: 'Profile', href: '#' },
4848
].map((item, index) => (
4949
<Anchor href={item.href} key={index}>

app/apps/projects/layout.tsx

Lines changed: 0 additions & 69 deletions
This file was deleted.

0 commit comments

Comments
 (0)