From 8fcf7254a27e9360074cbcd4233a4d91987ed647 Mon Sep 17 00:00:00 2001 From: Omar Oughriss Date: Fri, 24 Oct 2025 17:04:46 +0200 Subject: [PATCH] Delete unused chat pge --- app/dashboard/chat/loading.tsx | 79 ---------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 app/dashboard/chat/loading.tsx 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 */} -
-
- - - - -
-
-
-
- ) -}