fix: Open external links in a new tab #2994 (#2995)

This commit is contained in:
Anantesh G
2024-08-10 14:38:27 +05:30
committed by GitHub
parent 6ddfd29be8
commit 7fe18e99c3
+1
View File
@@ -15,6 +15,7 @@ const TopLevelNavItem = ({ href, children }: { href: string; children: React.Rea
<li>
<Link
href={href}
target="_blank"
className="text-sm leading-5 text-slate-600 transition hover:text-slate-900 dark:text-slate-400 dark:hover:text-white">
{children}
</Link>