adds hero page

This commit is contained in:
ajaythapliyal 2023-02-19 08:56:53 +05:30
parent 8d408c59d6
commit a86744d9d6

21
frontend/src/Hero.tsx Normal file
View File

@ -0,0 +1,21 @@
export default function Hero({ className = '' }: { className?: string }) {
return (
<div className={`flex flex-col ${className}`}>
<p className="mb-10 text-center text-4xl font-semibold">
DocsGPT <span className="text-3xl">🦖</span>
</p>
<p className="mb-3 text-center">
Welcome to DocsGPT, your technical documentation assistant!
</p>
<p className="mb-3 text-center">
Enter a query related to the information in the documentation you
selected to receive and we will provide you with the most relevant
answers.
</p>
<p className="text-center">
Start by entering your query in the input field below and we will do the
rest!
</p>
</div>
);
}