Update NavigationBar.tsx

This commit is contained in:
Damien Ostler 2024-05-27 23:28:16 -04:00
parent 54a771b47f
commit 10f8e5d289

View File

@ -128,24 +128,16 @@ export default async function AuthButton() {
</svg> </svg>
<span className="hidden lg:block">Subscription</span> <span className="hidden lg:block">Subscription</span>
</Link> </Link>
</div>
<div className="flex items-center gap-2">
<Link <Link
href="/login" href="/login"
className="py-2 px-3 flex rounded-3xl no-underline bg-neroshi-blue-900 hover:bg-neroshi-blue-800" className="py-2 px-3 flex rounded-3xl no-underline bg-neroshi-blue-900 hover:bg-neroshi-blue-800"
> >
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" className="size-6 md:hidden"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" className="size-6 md:hidden ">
<path strokeLinecap="round" strokeLinejoin="round" d="M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z" /> <path strokeLinecap="round" strokeLinejoin="round" d="M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z" />
</svg> </svg>
<span className="hidden lg:block">Login</span> <span className="hidden lg:block">Login</span>
</Link> </Link>
<Link
href="/login"
className="hidden lg:blockpy-2 px-3 flex rounded-3xl no-underline bg-neroshi-blue-900 hover:bg-neroshi-blue-800"
>
<span className="">Signup</span>
</Link>
</div> </div>
</div> </div>
</nav> </nav>