From 9d49df486d0979b88fc926795dbd4cb9c704c84c Mon Sep 17 00:00:00 2001 From: Spencer Lochne Date: Mon, 9 Jun 2025 15:16:35 -0400 Subject: [PATCH] 11a Solution --- .../lesson-11/chatbot-project/index.html | 2 -- .../lesson-11/chatbot-project/src/App.jsx | 24 ++++++++++++------- 2 files changed, 15 insertions(+), 11 deletions(-) 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 + + +
+ + +
+ ); }