diff --git a/app/dashboard/chat/loading.tsx b/app/dashboard/chat/loading.tsx deleted file mode 100644 index 4fdebad..0000000 --- a/app/dashboard/chat/loading.tsx +++ /dev/null @@ -1,79 +0,0 @@ -import { Skeleton } from "@/components/ui/skeleton" - -export default function ChatLoading() { - return ( -
- {/* Sidebar */} -
-
-
- - -
- -
- -
- {[...Array(5)].map((_, i) => ( -
-
- -
-
- - -
- - -
-
-
- ))} -
-
- - {/* Main Chat Area */} -
- {/* Header */} -
-
-
- -
- - -
-
-
- - - -
-
-
- - {/* Messages */} -
- {[...Array(6)].map((_, i) => ( -
-
- - -
-
- ))} -
- - {/* Input */} -
-
- - - - -
-
-
-
- ) -}