6 from nick's list

This commit is contained in:
ajaythapliyal
2023-03-02 08:42:42 +05:30
parent 7f81691ee0
commit 380429c33b
2 changed files with 8 additions and 4 deletions

View File

@@ -1,9 +1,10 @@
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>
<div className="mb-10 flex items-center justify-center">
<p className="mr-2 text-4xl font-semibold">DocsGPT</p>
<p className="text-[27px]">🦖</p>
</div>
<p className="mb-3 text-center leading-6 text-black-1000">
Welcome to DocsGPT, your technical documentation assistant!
</p>