diff --git a/frontend/src/Hero.tsx b/frontend/src/Hero.tsx new file mode 100644 index 00000000..817ba8bb --- /dev/null +++ b/frontend/src/Hero.tsx @@ -0,0 +1,21 @@ +export default function Hero({ className = '' }: { className?: string }) { + return ( +
+

+ 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! +

+
+ ); +}