Skip to content

Commit e9230c1

Browse files
committed
added sidebar
1 parent 7cf1dce commit e9230c1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

components/dashboardComponents/AppSidebar.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
"use client";
2+
23
import {
34
Calendar,
45
ChevronUp,
5-
Home,
6-
Inbox,
76
Search,
87
Settings,
8+
User,
99
User2,
1010
} from "lucide-react";
1111
import { useState } from "react";
@@ -29,20 +29,20 @@ import {
2929
DropdownMenuTrigger,
3030
} from "@/components/ui/dropdown-menu";
3131
import { cn } from "@/lib/utils";
32-
import { useAuthStore } from "@/store/AuthStore/useAuthStore";
3332
import { signout } from "@/app/actions/action";
33+
import Dashboard from "@/app/dashboard/page";
3434

3535
// Menu items.
3636
const items = [
3737
{
38-
title: "Home",
38+
title: "profile",
3939
url: "#",
40-
icon: Home,
40+
icon: User,
4141
},
4242
{
43-
title: "Inbox",
43+
title: "Problems",
4444
url: "#",
45-
icon: Inbox,
45+
icon: Dashboard,
4646
},
4747
{
4848
title: "Calendar",

0 commit comments

Comments
 (0)