@@ -7,12 +7,14 @@ import {
77 CreditCard ,
88 ScrollText ,
99 BookCopy ,
10+ ChartSpline ,
1011} from 'lucide-react'
1112import { Button } from '@/components/ui/button'
1213import { IsLoggedIn } from '@/lib/firebase/firebase'
1314import Landing from '@/components/landing'
1415
1516const menuItems = [
17+ { title : 'Dashboard' , icon : ChartSpline , href : '/dashboard' , level : 3 } ,
1618 { title : 'Libraries' , icon : Library , href : '/libraries' , level : 1 } ,
1719 { title : 'Books' , icon : Book , href : '/books' , level : 1 } ,
1820 { title : 'Users' , icon : Users , href : '/users' , level : 3 } ,
@@ -25,19 +27,19 @@ const menuItems = [
2527 level : 3 ,
2628 } ,
2729 { title : 'Borrows' , icon : BookCopy , href : '/borrows' , level : 3 } ,
28- {
29- title : 'My Memberships' ,
30- icon : CreditCard ,
31- href : '/memberships/me' ,
32- level : 2 ,
33- } ,
34- {
35- title : 'My Subscriptions' ,
36- icon : ScrollText ,
37- href : '/subscriptions/me' ,
38- level : 2 ,
39- } ,
40- { title : 'My Borrows' , icon : BookCopy , href : '/borrows/me' , level : 2 } ,
30+ // {
31+ // title: 'My Memberships',
32+ // icon: CreditCard,
33+ // href: '/memberships/me',
34+ // level: 2,
35+ // },
36+ // {
37+ // title: 'My Subscriptions',
38+ // icon: ScrollText,
39+ // href: '/subscriptions/me',
40+ // level: 2,
41+ // },
42+ // { title: 'My Borrows', icon: BookCopy, href: '/borrows/me', level: 2 },
4143]
4244
4345export default async function LibraryDashboard ( ) {
0 commit comments