diff --git a/frontend/src/About.tsx b/frontend/src/About.tsx index 84123b52..13d18a25 100644 --- a/frontend/src/About.tsx +++ b/frontend/src/About.tsx @@ -3,10 +3,12 @@ export default function About() { return ( - //Parent div for all content shown through App.tsx routing needs to have this styling. Might change when state management is updated.
-
-

About DocsGPT 🦖

+
+
+

About DocsGPT

+

🦖

+

Find the information in your documentation through AI-powered -

- DocsGPT 🦖 -

-

+

+

DocsGPT

+

🦖

+
+

Welcome to DocsGPT, your technical documentation assistant!

-

+

Enter a query related to the information in the documentation you selected to receive and we will provide you with the most relevant answers.

-

+

Start by entering your query in the input field below and we will do the rest!

diff --git a/frontend/src/conversation/Conversation.tsx b/frontend/src/conversation/Conversation.tsx index fffe012d..f9763665 100644 --- a/frontend/src/conversation/Conversation.tsx +++ b/frontend/src/conversation/Conversation.tsx @@ -31,20 +31,24 @@ export default function Conversation() { return (
-
- {messages.map((message, index) => { - return ( - - ); - })} - {messages.length === 0 && } -
+ {messages.length > 0 && ( +
+ {messages.map((message, index) => { + return ( + + ); + })} +
+ )} + {messages.length === 0 && }