From a86744d9d63f50db8f0150ffe771d5bc31a4ef2d Mon Sep 17 00:00:00 2001 From: ajaythapliyal Date: Sun, 19 Feb 2023 08:56:53 +0530 Subject: [PATCH] adds hero page --- frontend/src/Hero.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 frontend/src/Hero.tsx diff --git a/frontend/src/Hero.tsx b/frontend/src/Hero.tsx new file mode 100644 index 0000000..817ba8b --- /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! +

+
+ ); +}