Small fix with fixed height and width

This commit is contained in:
Lakshmi Narayanan
2023-10-29 02:01:18 +04:00
parent 56b81b78c3
commit e627ebc127
3 changed files with 2 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ export default function About() {
<article className="place-items-left mx-auto my-auto flex w-full max-w-6xl flex-col gap-4 rounded-3xl bg-gray-100 p-6 text-jet lg:p-6 xl:p-10">
<div className="flex items-center">
<p className="mr-2 text-3xl">About DocsGPT</p>
<img src={DocsGPT3} width="41px" height="41px" alt="DocsGPT" />
<img src={DocsGPT3} alt="DocsGPT" />
</div>
<p className="mt-4">
Find the information in your documentation through AI-powered

View File

@@ -5,7 +5,7 @@ export default function Hero({ className = '' }: { className?: string }) {
<div className={`mt-14 mb-12 flex flex-col `}>
<div className="mb-10 flex items-center justify-center ">
<p className="mr-2 text-4xl font-semibold">DocsGPT</p>
<img src={DocsGPT3} width="41px" height="41px" alt="DocsGPT" />
<img src={DocsGPT3} alt="DocsGPT" />
</div>
<p className="mb-3 text-center leading-6 text-black-1000">
Welcome to DocsGPT, your technical documentation assistant!

View File

@@ -210,8 +210,6 @@ export default function Navigation({ navOpen, setNavOpen }: NavigationProps) {
className={`${
!navOpen ? 'rotate-180' : 'rotate-0'
} m-auto transition-all duration-200`}
width="25px"
height="25px"
/>
</button>
</div>