From 114702e246708881c0c350e5505e0069dd757cc0 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 11 Mar 2025 19:01:52 +0800 Subject: [PATCH 1/7] updated layout.tsx --- src/app/components/ChatInterface.tsx | 54 ++++++++++++++++++++++++++++ src/app/components/Sidebar.tsx | 44 +++++++++++++++++++++++ src/app/globals.css | 46 +++++++++++++++--------- src/app/layout.tsx | 21 ++++++++--- src/app/page.tsx | 49 ++++--------------------- 5 files changed, 150 insertions(+), 64 deletions(-) create mode 100644 src/app/components/ChatInterface.tsx create mode 100644 src/app/components/Sidebar.tsx diff --git a/src/app/components/ChatInterface.tsx b/src/app/components/ChatInterface.tsx new file mode 100644 index 00000000..59ee69f2 --- /dev/null +++ b/src/app/components/ChatInterface.tsx @@ -0,0 +1,54 @@ +import { FC } from 'react'; +import { Plus, Search, Mic, MoreHorizontal } from 'lucide-react'; + +const ChatInterface: FC = () => { + return ( +
+ {/* Chat Messages Area */} +
+
+ {/* Messages would go here */} +
+ What can I help with? +
+
+
+ + {/* Input Area */} +
+
+
+
+ + +