diff options
| author | Andrew Lee <andrew@alee14.me> | 2026-07-06 16:17:58 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2026-07-06 16:17:58 -0400 |
| commit | 167cfd3793f49d300c99b948b2302304aede3e9f (patch) | |
| tree | b70dc5abdb60fb584d6b23848fb48282d75f1284 /src/pages/contacts.astro | |
| parent | 59de20ef0835170d30f5033d8c98aad41e554882 (diff) | |
| download | personal-website-167cfd3793f49d300c99b948b2302304aede3e9f.tar.gz personal-website-167cfd3793f49d300c99b948b2302304aede3e9f.tar.bz2 personal-website-167cfd3793f49d300c99b948b2302304aede3e9f.zip | |
Fixed programming; add new contact; revised guidelines, privacy pol
Diffstat (limited to 'src/pages/contacts.astro')
| -rw-r--r-- | src/pages/contacts.astro | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pages/contacts.astro b/src/pages/contacts.astro index aef523d..60eeff2 100644 --- a/src/pages/contacts.astro +++ b/src/pages/contacts.astro @@ -6,10 +6,9 @@ import contacts from "../data/contacts.json"; <Page title="Contacts" description="Follow me on these platforms"> <main> {contacts.map((contact)=> { - let icon = "fa6-brands:" + contact.icon; return ( <a href={contact.url} target="_blank" title={contact.mouseover}><div class="contacts-card"> - <Icon name={icon} class="contact-icon" /> + <Icon name={contact.icon} class="contact-icon" /> {contact.platform} ({contact.username}) </div></a> ) |
