Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions src/components/Navbar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@
// Navbar component for social links
---

<div class="topnav">
<a href="https://join.slack.com/t/firstcontributors/shared_invite/zt-1n4y7xnk0-DnLVTaN6U9xLU79H5Hi62w" target="_blank" rel="noopener noreferrer">
<img src="/slack.svg" class="logo" alt="slack logo" />
<nav class="topnav" aria-label="First Contributions links">
<a href="https://join.slack.com/t/firstcontributors/shared_invite/zt-1n4y7xnk0-DnLVTaN6U9xLU79H5Hi62w" target="_blank" rel="noopener noreferrer" aria-label="Open First Contributions Slack">
<img src="/slack.svg" class="logo" alt="" aria-hidden="true" />
<span>Slack</span>
</a>
<a href="https://www.youtube.com/channel/UCMXNFxCvyH5LhUwEcmY8qGQ" target="_blank" rel="noopener noreferrer">
<img src="/youtube.svg" class="logo" alt="youtube logo" />
<span>Youtube</span>
<a href="https://www.youtube.com/channel/UCMXNFxCvyH5LhUwEcmY8qGQ" target="_blank" rel="noopener noreferrer" aria-label="Open First Contributions on YouTube">
<img src="/youtube.svg" class="logo" alt="" aria-hidden="true" />
<span>YouTube</span>
</a>
<a href="https://twitter.com/1stContribution" target="_blank" rel="noopener noreferrer">
<img src="/twitter.svg" class="logo" alt="twitter logo" />
<a href="https://twitter.com/1stContribution" target="_blank" rel="noopener noreferrer" aria-label="Open First Contributions on Twitter">
<img src="/twitter.svg" class="logo" alt="" aria-hidden="true" />
<span>Twitter</span>
</a>
<a href="https://github.com/firstcontributions/first-contributions" target="_blank" rel="noopener noreferrer">
<img src="/github.svg" class="logo" alt="github logo" />
<a href="https://github.com/firstcontributions/first-contributions" target="_blank" rel="noopener noreferrer" aria-label="Open First Contributions on GitHub">
<img src="/github.svg" class="logo" alt="" aria-hidden="true" />
<span>GitHub</span>
</a>
</div>
</nav>

<style>
.topnav {
Expand Down