From c36955aa450dd3fa8668e7c91a7822a3c087eb38 Mon Sep 17 00:00:00 2001 From: pml68 Date: Tue, 16 Jan 2024 19:35:26 +0100 Subject: feat: add profile content, socials etc. --- src/routes/+page.svelte | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/routes') diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 938ebaf..fe36e3f 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -2,6 +2,15 @@ import '../app.scss' import wave1 from '$lib/assets/wave1.svg' import wave2 from '$lib/assets/wave2.svg' + + import { socials } from '$lib/socials.json' + + type Social = { + link: string, + icon: string + } + + const socialsList: Social[] = socials @@ -11,4 +20,15 @@ Wave 1 Wave 2
+
+

pml68

+

Just your average IT student

+
+ {#each socialsList as {link, icon}} + +
+
+ {/each} +
+
-- cgit v1.2.3