fix navbar

This commit is contained in:
fgrreloaded
2025-02-18 20:35:58 +05:30
parent 5b5016037e
commit ac70dc7c64

View File

@@ -135,15 +135,15 @@ const Navbar = () => {
scrolled ? "opacity-0 pointer-events-none" : "opacity-100"
}`}
>
<button
type="button"
<Link
href="/docs"
className="relative max-sm:hidden inline-flex h-12 overflow-hidden rounded-full p-[1px] focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 focus:ring-offset-slate-50"
>
<span className="absolute inset-[-1000%] animate-[spin_2s_linear_infinite] bg-[conic-gradient(from_90deg_at_50%_50%,#E2CBFF_0%,#393BB2_50%,#E2CBFF_100%)]" />
<span className="inline-flex h-full w-full cursor-pointer items-center justify-center rounded-full bg-slate-950 px-6 py-px text-sm font-medium text-white backdrop-blur-3xl">
Documentation
</span>
</button>
</Link>
</div>
</nav>
);