diff --git a/2-copy-of-code/lesson-11/chatbot-project/index.html b/2-copy-of-code/lesson-11/chatbot-project/index.html index 89357b2..b72bac5 100644 --- a/2-copy-of-code/lesson-11/chatbot-project/index.html +++ b/2-copy-of-code/lesson-11/chatbot-project/index.html @@ -2,9 +2,7 @@ - - Chatbot Project
diff --git a/2-copy-of-code/lesson-11/chatbot-project/src/App.jsx b/2-copy-of-code/lesson-11/chatbot-project/src/App.jsx index b3623a7..b701ff1 100644 --- a/2-copy-of-code/lesson-11/chatbot-project/src/App.jsx +++ b/2-copy-of-code/lesson-11/chatbot-project/src/App.jsx @@ -1,6 +1,7 @@ import { useState } from 'react' import { ChatInput } from './components/ChatInput'; import ChatMessages from './components/ChatMessages'; +import RobotProfileImage from './assets/robot.png'; import './App.css' function App() { @@ -26,15 +27,20 @@ function App() { // const setChatMessages = array[1]; return ( -
- - -
+ <> + Chatbot Project + + +
+ + +
+ ); }