diff --git a/app/(dashboard)/dashboard-client.tsx b/app/(dashboard)/dashboard-client.tsx index 368b40e..55b09ff 100644 --- a/app/(dashboard)/dashboard-client.tsx +++ b/app/(dashboard)/dashboard-client.tsx @@ -5,7 +5,7 @@ import Link from "next/link"; import { Badge, Card, CardContent } from "poyraz-ui/atoms"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "poyraz-ui/molecules"; import { Bar, BarChart, CartesianGrid, ResponsiveContainer, Tooltip, XAxis, YAxis, Line, LineChart } from "recharts"; -import { CheckCircle2, Wallet, FolderKanban, Activity, CalendarDays, Users } from "lucide-react"; +import { CheckCircle2, Wallet, FolderKanban, Activity, Users } from "lucide-react"; export type DashboardData = { tasks: { id: string; status: string; created_at: string; updated_at?: string; due_at?: string }[]; diff --git a/components/dashboard/quick-actions-sheet.tsx b/components/dashboard/quick-actions-sheet.tsx deleted file mode 100644 index cebeaf3..0000000 --- a/components/dashboard/quick-actions-sheet.tsx +++ /dev/null @@ -1,122 +0,0 @@ -"use client"; - -import { motion, AnimatePresence } from "framer-motion"; -import { X, PenTool, Target, CheckSquare2, Calendar, Coffee, Zap, Moon } from "lucide-react"; - -interface QuickActionsSheetProps { - isOpen: boolean; - onClose: () => void; -} - -export function QuickActionsSheet({ isOpen, onClose }: QuickActionsSheetProps) { - return ( - - {isOpen && ( - <> - {/* Backdrop */} - - - {/* Sheet Content */} - - {/* Header */} -
-
-

Quick Actions

-

Add new entries to your workspace

-
- -
- - {/* Action Grid */} -
-
-

Core Actions

-
- {[ - { icon: PenTool, label: "New Journal", color: "text-purple-400", bg: "bg-purple-500/10" }, - { icon: Target, label: "Set Habit", color: "text-blue-400", bg: "bg-blue-500/10" }, - { icon: CheckSquare2, label: "New Goal", color: "text-emerald-400", bg: "bg-emerald-500/10" }, - { icon: Calendar, label: "Schedule", color: "text-orange-400", bg: "bg-orange-500/10" }, - ].map((item, idx) => ( - - ))} -
-
- -
-

Quick Logs

-
- {[ - { icon: Coffee, label: "Log Coffee", value: "+1 Cup" }, - { icon: Zap, label: "Energy Level", value: "8/10" }, - { icon: Moon, label: "Sleep Quality", value: "Great" }, - ].map((item, idx) => ( - - ))} -
-
- - {/* Form Input Sample */} -
-

Quick Task

-
-
- -
- -
-
-
- - {/* Footer */} -
-

- AI Assistant is ready to help with any of these actions -

-
-
- - )} -
- ); -}