diff --git a/frontend/app/projects/[projectId]/dashboard/page.tsx b/frontend/app/projects/[projectId]/dashboard/page.tsx
new file mode 100644
index 0000000..67ef9c9
--- /dev/null
+++ b/frontend/app/projects/[projectId]/dashboard/page.tsx
@@ -0,0 +1,3 @@
+export default function Page() {
+ return <>This is Dashboard tab>;
+}
diff --git a/frontend/app/projects/[projectId]/home/page.tsx b/frontend/app/projects/[projectId]/home/page.tsx
deleted file mode 100644
index f55192f..0000000
--- a/frontend/app/projects/[projectId]/home/page.tsx
+++ /dev/null
@@ -1,3 +0,0 @@
-export default function Page() {
- return <>This is Home tab>;
-}
diff --git a/frontend/app/projects/[projectId]/sidebar.tsx b/frontend/app/projects/[projectId]/sidebar.tsx
index b24d4b1..4c43858 100644
--- a/frontend/app/projects/[projectId]/sidebar.tsx
+++ b/frontend/app/projects/[projectId]/sidebar.tsx
@@ -1,6 +1,6 @@
"use client";
import { Menu, MenuItem } from "@nextui-org/react";
-import { HomeIcon, PagesIcon, PlayIcon } from "@/components/icons";
+import { LayoutDashboard, Files, FlaskConical } from "lucide-react";
import { useRouter } from "next/navigation";
import useGetCurrentIds from "@/utils/useGetCurrentIds";
@@ -11,21 +11,21 @@ export default function Sidebar() {