From a453573fb648e505d33631a3837499cd17b1afb4 Mon Sep 17 00:00:00 2001 From: Avanish Singh <79073722+aaviix@users.noreply.github.com> Date: Thu, 16 Nov 2023 16:22:36 +0100 Subject: [PATCH] Create App.js --- frontend-react/src/App.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 frontend-react/src/App.js diff --git a/frontend-react/src/App.js b/frontend-react/src/App.js new file mode 100644 index 0000000..bd99f91 --- /dev/null +++ b/frontend-react/src/App.js @@ -0,0 +1,20 @@ +import React from "react"; +import image from "./images/recipe.jpg"; +import "/App.css"; +import ChatBotRobot from "./Chatbotcomponent"; + +function App() { + return ( + <span> + <div className="App" style={{ backgroundImage:`url(${image})`,backgroundRepeat:"no-repeat",backgroundSize:"cover" }}> + <header className="App-header"> + <h3> RECIPE EXPERTS. </h3> + <p> Welcomes you's to the smart assistance by our Sam the Advisor. </p> + </header> + </div> + <ChatBotRobot /> + </span> + ); +} + +export default App; -- GitLab