File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ TLDR: Notepad + @file from FileTree + git diff + streaming chat + agent + mcp
2020
2121![ demo] ( public/codexia.png )
2222
23+ ## Disclaimer
24+
25+ Codexia is an independent open-source project and is not built by OpenAI or any company.
26+
2327## ✨ Features
2428
2529### 🔄 ** Multi-Session Support**
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ export const ChatInput: React.FC<ChatInputProps> = ({
212212 value = { inputValue }
213213 onChange = { ( e ) => onInputChange ( e . target . value ) }
214214 onKeyDown = { handleKeyPress }
215- placeholder = { placeholderOverride || "Type your message... " }
215+ placeholder = { placeholderOverride || "Ask Codex to do anything " }
216216 className = { `min-h-[60px] max-h-[200px] pr-32 bg-gray-100 resize-none overflow-y-auto pb-8 ${
217217 ( fileReferences . length > 0 || mediaAttachments . length > 0 ) ? 'pt-8' : ''
218218 } `}
Original file line number Diff line number Diff line change 66 PanelLeftClose ,
77 PanelLeftOpen ,
88 FolderTree ,
9- Plus ,
9+ PencilIcon ,
1010} from "lucide-react" ;
1111import { Tabs , TabsList , TabsTrigger } from "../ui/tabs" ;
1212import { useConversationStore } from "@/stores/ConversationStore" ;
@@ -142,7 +142,7 @@ export const AppToolbar: React.FC<AppToolbarProps> = ({
142142 className = "h-7 w-7 p-0"
143143 title = "Create New Conversation"
144144 >
145- < Plus className = "h-3 w-3" />
145+ < PencilIcon className = "h-3 w-3" />
146146 </ Button >
147147
148148 { /* Settings Button */ }
@@ -159,14 +159,14 @@ export const AppToolbar: React.FC<AppToolbarProps> = ({
159159 ) }
160160
161161 { activeTab === "notes" && (
162- < div className = "flex items-center gap-1 shrink-0" >
162+ < div className = "flex items-center gap-1 shrink-0 pr-2 " >
163163 < Button
164164 onClick = { handleCreateNote }
165165 size = "sm"
166166 className = "h-7 w-7 p-0"
167167 title = "Create New Note"
168168 >
169- < Plus className = "h-3 w-3" />
169+ < PencilIcon className = "h-3 w-3" />
170170 </ Button >
171171 </ div >
172172 ) }
You can’t perform that action at this time.
0 commit comments