"use client"; import { StatsCards } from "@/components/dashboard/stats-cards"; import { RecentActivity } from "@/components/dashboard/recent-activity"; import { PendingTasks } from "@/components/dashboard/pending-tasks"; import { QuickActions } from "@/components/dashboard/quick-actions"; import { useDashboardStats, useRecentActivity, usePendingTasks } from "@/hooks/use-dashboard"; export default function DashboardPage() { const { data: stats, isLoading: statsLoading } = useDashboardStats(); const { data: activities, isLoading: activityLoading } = useRecentActivity(); const { data: tasks, isLoading: tasksLoading } = usePendingTasks(); return (

Dashboard

Welcome back! Here's an overview of your project status.

); }