diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-23 19:35:26 +0000 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-23 19:35:26 +0000 |
| commit | 67f5db139b27e4dfeb8dc8a6837dc22b1b6de70c (patch) | |
| tree | d1405378e6fbfef41819c2e6c3f842ed19a5af67 /src/pages/contacts.astro | |
| parent | 8825af4b3b18c4cea3bf798496022d72f8188faa (diff) | |
| download | personal-website-67f5db139b27e4dfeb8dc8a6837dc22b1b6de70c.tar.gz personal-website-67f5db139b27e4dfeb8dc8a6837dc22b1b6de70c.tar.bz2 personal-website-67f5db139b27e4dfeb8dc8a6837dc22b1b6de70c.zip | |
Removed final "vh" and add easter egg
Diffstat (limited to 'src/pages/contacts.astro')
| -rw-r--r-- | src/pages/contacts.astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pages/contacts.astro b/src/pages/contacts.astro index 098f97b..908fba8 100644 --- a/src/pages/contacts.astro +++ b/src/pages/contacts.astro @@ -7,9 +7,9 @@ import contacts from "../components/contacts.json"; {contacts.map((contact)=> { let icon = "fa6-brands:" + contact.icon; return ( - <a href={contact.url} target="_blank"><div class="contacts-card"> - <Icon name={icon} class="contact-icon" /> - {contact.platform} ({contact.username}) + <a href={contact.url} target="_blank" title={contact.mouseover}><div class="contacts-card"> + <Icon name={icon} class="contact-icon" /> + {contact.platform} ({contact.username}) </div></a> ) })} |
