Skip to content

Commit

Permalink
feat(dashboard): add empty pages to the dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhall1515 committed Apr 28, 2024
1 parent 41ac310 commit 973c207
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/(private)/dashboard/account/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function Overview() {
return (
<>
<section></section>
</>
);
}
7 changes: 7 additions & 0 deletions app/(private)/dashboard/analytics/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function Overview() {
return (
<>
<section></section>
</>
);
}
7 changes: 7 additions & 0 deletions app/(private)/dashboard/help/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function Overview() {
return (
<>
<section></section>
</>
);
}
7 changes: 7 additions & 0 deletions app/(private)/dashboard/items/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function Overview() {
return (
<>
<section></section>
</>
);
}
7 changes: 7 additions & 0 deletions app/(private)/dashboard/settings/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function Overview() {
return (
<>
<section></section>
</>
);
}

0 comments on commit 973c207

Please sign in to comment.