diff --git a/app/portal/tasks/page.tsx b/app/portal/tasks/page.tsx index d02f684..b6e167c 100644 --- a/app/portal/tasks/page.tsx +++ b/app/portal/tasks/page.tsx @@ -5,17 +5,17 @@ export default function PortalTasksPage() { return (
-

Görevlerim

-

Size atanan ve herkese açık olan proje görevleri.

+

Yapılan Görevler

+

Projeniz kapsamında üzerinde çalışılan ve tamamlanan görevler.

- Görev modülü yapım aşamasında + Görev detayları yapım aşamasında

- Yakında tüm görevlerinizi buradan takip edebileceksiniz. Şimdilik proje detay sayfasından görevlere ulaşabilirsiniz. + Yakında tüm görevlerin anlık durumlarını detaylıca buradan görebileceksiniz. Şimdilik proje detay sayfasından takip edebilirsiniz.

Dashboard'a dön diff --git a/components/layout/portal-shell.tsx b/components/layout/portal-shell.tsx index 1ef0ae3..2da89d4 100644 --- a/components/layout/portal-shell.tsx +++ b/components/layout/portal-shell.tsx @@ -25,7 +25,7 @@ import { } from "poyraz-ui/organisms"; import { portalSidebarData } from "@/config/portal-sidebar"; import { cn } from "@/lib/utils"; -import { ChevronUp, LogOut, Menu, Settings } from "lucide-react"; +import { Activity, ChevronUp, LogOut, Menu, Settings } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; import { usePathname } from "next/navigation"; @@ -120,18 +120,33 @@ function AppSidebar({ variant="bordered" className="flex h-dvh max-h-dvh flex-col overflow-hidden rounded-none border-0" > - -
-
- Aktif İlerleme - %{progress} + +
+
+
+ +
+
+ Genel Durum + Proje İlerlemesi +
-
-
+ +
+
+ %{progress} Tamamlandı +
+
+
+
+
+
+ +
diff --git a/config/portal-sidebar.ts b/config/portal-sidebar.ts index 1949134..d409911 100644 --- a/config/portal-sidebar.ts +++ b/config/portal-sidebar.ts @@ -25,7 +25,7 @@ export const portalSidebarData: PortalSidebarNavGroup[] = [ { title: "SÜREÇLER", items: [ - { title: "Görevlerim", href: "/portal/tasks", icon: FolderKanban }, + { title: "Yapılan Görevler", href: "/portal/tasks", icon: FolderKanban }, { title: "Revizyon Talepleri", href: "/portal/revisions", icon: Sparkles }, ], }