27080_logo_removal
Showing
4 changed files
with
18 additions
and
2 deletions
4.41 KB
| ... | @@ -250,6 +250,19 @@ | ... | @@ -250,6 +250,19 @@ |
| 250 | font-size: 14px; | 250 | font-size: 14px; |
| 251 | } | 251 | } |
| 252 | 252 | ||
| 253 | .suggested-header-title { | ||
| 254 | font-size: 1.5em; | ||
| 255 | font-weight: bold; | ||
| 256 | } | ||
| 257 | |||
| 258 | .suggested-header-title p:first-child { | ||
| 259 | font-size: 1.57em; | ||
| 260 | } | ||
| 261 | |||
| 262 | .suggested-header-title p { | ||
| 263 | margin: 0; | ||
| 264 | } | ||
| 265 | |||
| 253 | ul.suggested-options { | 266 | ul.suggested-options { |
| 254 | cursor: pointer; | 267 | cursor: pointer; |
| 255 | overflow-x: hidden; | 268 | overflow-x: hidden; | ... | ... |
| 1 | const SideMenu = ({ clearChat, currentModel, setCurrentModel, models, setTemperature, temperature }) => | 1 | const SideMenu = ({ clearChat, currentModel, setCurrentModel, models, setTemperature, temperature }) => |
| 2 | <aside className="sidemenu"> | 2 | <aside className="sidemenu"> |
| 3 | <div className="ai-logo-container"> | 3 | <div className="ai-logo-container"> |
| 4 | <img className="ai-logo" alt="Ai-pro logo" src="../assets/images/AIPRO-WHITE.png" height="50px"/> | 4 | <img className="ai-logo" alt="Ai-pro logo" src="../assets/images/chatgpt-aipro.png" height="50px"/> |
| 5 | </div> | 5 | </div> |
| 6 | <div className="side-menu-button" onClick={clearChat}> | 6 | <div className="side-menu-button" onClick={clearChat}> |
| 7 | <span>+</span> | 7 | <span>+</span> | ... | ... |
| ... | @@ -21,7 +21,10 @@ const SuggestedOptions = ({ setChatInput }) => { | ... | @@ -21,7 +21,10 @@ const SuggestedOptions = ({ setChatInput }) => { |
| 21 | return ( | 21 | return ( |
| 22 | <div className="suggested"> | 22 | <div className="suggested"> |
| 23 | <div className="suggestedrow title"> | 23 | <div className="suggestedrow title"> |
| 24 | <h1>Welcome to AI-PRO</h1> | 24 | <div className="suggested-header-title"> |
| 25 | <p>ChatGPT</p> | ||
| 26 | <p>by AI-PRO</p> | ||
| 27 | </div> | ||
| 25 | <p>This chatbot is capable of answering questions and generating text based on the input you provide.</p> | 28 | <p>This chatbot is capable of answering questions and generating text based on the input you provide.</p> |
| 26 | </div> | 29 | </div> |
| 27 | <div className="suggestedcol rack1"> | 30 | <div className="suggestedcol rack1"> | ... | ... |
-
Please register or sign in to post a comment