feat: add revisions and tasks pages to client portal with integrated sidebar navigation

This commit is contained in:
Poyraz Avsever
2026-06-08 15:43:59 +03:00
parent 37eee3a545
commit 1bc51ffd21
5 changed files with 328 additions and 88 deletions
+3 -1
View File
@@ -1,6 +1,7 @@
import {
FolderKanban,
Sparkles,
CheckSquare2,
} from "lucide-react";
export type PortalSidebarNavItem = {
@@ -25,7 +26,8 @@ export const portalSidebarData: PortalSidebarNavGroup[] = [
{
title: "SÜREÇLER",
items: [
{ title: "Yapılan Görevler", href: "/portal/tasks", icon: FolderKanban },
{ title: "Projeleriniz", href: "/portal/projects", icon: FolderKanban },
{ title: "Yapılan Görevler", href: "/portal/tasks", icon: CheckSquare2 },
{ title: "Revizyon Talepleri", href: "/portal/revisions", icon: Sparkles },
],
}