feat: enhance roadmap with detailed tasks and acceptance criteria; update database documentation and query management

This commit is contained in:
Poyraz Avsever
2026-06-01 11:43:37 +03:00
parent 083997e6bc
commit 53a225594a
15 changed files with 169 additions and 46 deletions
+10 -29
View File
@@ -1,25 +1,20 @@
import {
Activity,
BarChart3,
BookOpenText,
Building2,
Calendar,
CheckSquare2,
FileText,
FolderKanban,
MessageCircleHeart,
Sparkles,
Target,
Users,
Wallet,
Building2,
Tags,
} from "lucide-react";
export type SidebarNavItem = {
title: string;
href?: string;
icon?: any;
items?: SidebarNavItem[]; // For nested (accordion) links later
items?: SidebarNavItem[];
};
export type SidebarNavGroup = {
@@ -29,7 +24,7 @@ export type SidebarNavGroup = {
export const sidebarData: SidebarNavGroup[] = [
{
title: "GENEL BAKIŞ",
title: "GENEL BAKIS",
items: [
{ title: "Dashboard", href: "/", icon: Sparkles },
{ title: "Takvim", href: "/calendar", icon: Calendar },
@@ -37,34 +32,20 @@ export const sidebarData: SidebarNavGroup[] = [
],
},
{
title: "YÖNETİM",
title: "OPERASYON",
items: [
{ title: "Görevler", href: "/tasks", icon: CheckSquare2 },
{ title: "Musteriler", href: "/clients", icon: Building2 },
{ title: "Projeler", href: "/projects", icon: FolderKanban },
{ title: "Dökümanlar", href: "/documents", icon: FileText },
{ title: "Gorevler", href: "/tasks", icon: CheckSquare2 },
{ title: "Finans", href: "/finance", icon: Wallet },
],
},
{
title: "KİŞİSEL",
items: [
{ title: "Günlük", href: "/journal", icon: BookOpenText },
{ title: "Alışkanlıklar", href: "/habits", icon: Activity },
{ title: "Hedefler", href: "/goals", icon: Target },
],
title: "KISISEL",
items: [{ title: "Gunluk", href: "/journal", icon: BookOpenText }],
},
{
title: "FREELANCE",
items: [
{ title: "Müşteriler (CRM)", href: "/freelance/clients", icon: Building2 },
{ title: "Teklifler & Sözleşmeler", href: "/freelance/proposals", icon: Tags },
{ title: "Zaman Takibi", href: "/freelance/time-tracking", icon: Activity },
],
},
{
title: "AI ASİSTAN",
items: [
{ title: "Sohbet", href: "/chat", icon: MessageCircleHeart },
],
title: "AI ASISTAN",
items: [{ title: "Sohbet", href: "/chat", icon: MessageCircleHeart }],
},
];