Skip to content

Commit

Permalink
Add link to Zulip (temporary icon)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewlacy committed Jun 5, 2024
1 parent 6209894 commit c1bfcf7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ const navLinks: NavLink[] = [
];
const socialLinks: SocialLink[] = [
{
label: "Zulip",
icon: "comment",
href: "https://brioche.zulipchat.com/join/4m44hxxd67apx63gmbmx6yg4/",
},
{
label: "Discord",
icon: "discord",
Expand Down Expand Up @@ -76,7 +81,7 @@ const socialLinks: SocialLink[] = [
<div class="hidden sm:flex sm:flex-row gap-4">
{
socialLinks.map((link) => (
<a href={link.href} class="hover:opacity-65">
<a href={link.href} class="hover:opacity-65" title={link.label}>
<span class="sr-only">{link.label}</span>
<Icon name={link.icon} />
</a>
Expand Down

0 comments on commit c1bfcf7

Please sign in to comment.