Merge pull request #162 from TheMohit2003/issueExternalLinks

User routed to different tab for external links
This commit is contained in:
1ilit 2024-07-24 11:50:24 +04:00 committed by GitHub
commit 805fc70c0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,6 +44,8 @@ export default function Navbar() {
title="Jump to Github" title="Jump to Github"
className="px-3 py-2 bg-zinc-100 hover:opacity-60 transition-all duration-300 rounded-full text-2xl" className="px-3 py-2 bg-zinc-100 hover:opacity-60 transition-all duration-300 rounded-full text-2xl"
href="https://github.com/drawdb-io/drawdb" href="https://github.com/drawdb-io/drawdb"
target="_blank"
rel="noreferrer"
> >
<i className="opacity-70 bi bi-github" /> <i className="opacity-70 bi bi-github" />
</a> </a>
@ -51,6 +53,8 @@ export default function Navbar() {
title="Follow us on X" title="Follow us on X"
className="px-3 py-2 bg-zinc-100 hover:opacity-60 transition-all duration-300 rounded-full text-2xl" className="px-3 py-2 bg-zinc-100 hover:opacity-60 transition-all duration-300 rounded-full text-2xl"
href="https://x.com/drawDB_" href="https://x.com/drawDB_"
target="_blank"
rel="noreferrer"
> >
<i className="opacity-70 bi bi-twitter-x" /> <i className="opacity-70 bi bi-twitter-x" />
</a> </a>
@ -58,6 +62,8 @@ export default function Navbar() {
title="Join the community on Discord" title="Join the community on Discord"
className="px-3 py-2 bg-zinc-100 hover:opacity-60 transition-all duration-300 rounded-full text-2xl" className="px-3 py-2 bg-zinc-100 hover:opacity-60 transition-all duration-300 rounded-full text-2xl"
href="https://discord.gg/BrjZgNrmR6" href="https://discord.gg/BrjZgNrmR6"
target="_blank"
rel="noreferrer"
> >
<i className="opacity-70 bi bi-discord" /> <i className="opacity-70 bi bi-discord" />
</a> </a>