From 59237821b6fcc7cb5265ad8710264ff42645bdf2 Mon Sep 17 00:00:00 2001 From: pml68 Date: Sat, 20 Jan 2024 15:04:33 +0100 Subject: feat: add email to contact options --- src/lib/socials.json | 12 ++++++++---- src/routes/+page.svelte | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/lib/socials.json b/src/lib/socials.json index f87255d..ea4c1ab 100644 --- a/src/lib/socials.json +++ b/src/lib/socials.json @@ -2,19 +2,23 @@ "socials": [ { "link": "https://github.com/pml68", - "icon": "fa-github" + "icon": "fab fa-github" }, { "link": "https://dev.to/pml68", - "icon": "fa-dev" + "icon": "fab fa-dev" }, { "link": "https://steamcommunity.com/id/nigmaballs", - "icon": "fa-steam" + "icon": "fab fa-steam" }, { "link": "https://t.me/pml68_1", - "icon": "fa-telegram" + "icon": "fab fa-telegram" + }, + { + "link": "mailto:contact@pml68.me", + "icon": "fas fa-envelope" } ] } diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 17129e9..6929908 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -25,7 +25,7 @@
{#each socialsList as {link, icon}} - + {/each}
-- cgit v1.2.3