aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2024-01-20 15:04:33 +0100
committerpml68 <tutorialmester@gmail.com>2024-01-20 15:04:33 +0100
commit59237821b6fcc7cb5265ad8710264ff42645bdf2 (patch)
tree81e488f6a15c8593e8e8b60456295ecb653784ab /src
parentfeat: add actual projects (diff)
downloadpml68.dev-59237821b6fcc7cb5265ad8710264ff42645bdf2.tar.gz
feat: add email to contact options
Diffstat (limited to 'src')
-rw-r--r--src/lib/socials.json12
-rw-r--r--src/routes/+page.svelte2
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 @@
<div class="socials">
{#each socialsList as {link, icon}}
<a href={link} target="_blank">
- <i class={'social-icon fa-brands ' + icon}></i>
+ <i class={'social-icon ' + icon}></i>
</a>
{/each}
</div>