diff --git a/surfsense_web/components/chat/ChatInterface.tsx b/surfsense_web/components/chat/ChatInterface.tsx index 082e1ea44..4aaeb2847 100644 --- a/surfsense_web/components/chat/ChatInterface.tsx +++ b/surfsense_web/components/chat/ChatInterface.tsx @@ -8,6 +8,7 @@ import { ChatInputUI } from "@/components/chat/ChatInputGroup"; import { ChatMessagesUI } from "@/components/chat/ChatMessages"; import type { Document } from "@/hooks/use-documents"; import { cn } from "@/lib/utils"; +import { ChatPanelContainer } from "./ChatPannel/ChatPannelContainer"; interface ChatInterfaceProps { handler: ChatHandler; @@ -67,7 +68,9 @@ export default function ChatInterface({ -
Chat pannel
+
+ +
diff --git a/surfsense_web/components/chat/ChatPannel/ChatPanelView.tsx b/surfsense_web/components/chat/ChatPannel/ChatPanelView.tsx index f15fce818..5f4eb0405 100644 --- a/surfsense_web/components/chat/ChatPannel/ChatPanelView.tsx +++ b/surfsense_web/components/chat/ChatPannel/ChatPanelView.tsx @@ -1,3 +1,22 @@ +import { Pencil, Podcast } from "lucide-react"; + export default function ChatPanelView() { - return
Chat Panel View
; + return ( +
+
+
+
+ + +
+

Generate Podcast

+
+
+
+ ); } diff --git a/surfsense_web/components/chat/ChatPannel/ChatPannelContainer.tsx b/surfsense_web/components/chat/ChatPannel/ChatPannelContainer.tsx index f3f2ae9f1..7df13a1d2 100644 --- a/surfsense_web/components/chat/ChatPannel/ChatPannelContainer.tsx +++ b/surfsense_web/components/chat/ChatPannel/ChatPannelContainer.tsx @@ -1,3 +1,5 @@ +import ChatPanelView from "./ChatPanelView"; + export function ChatPanelContainer() { - return
Chat Panel container
; + return ; }