"use client"; import { RecentActivity } from "@/components/dashboard/activity"; import { useAppState } from "@/components/hooks/useAppContext"; import { LoadingOverlay } from "@/components/join/loadingOverlay"; export default function Dashboard() { const { isLoading } = useAppState(); if (isLoading) { return (