From 24c7b6bff72967b0ddc8b6e11a92eea9ceeeba43 Mon Sep 17 00:00:00 2001 From: Satria Date: Thu, 19 Mar 2026 10:46:19 +0700 Subject: [PATCH] add in the extra data --- src/lib/index.ts | 12 ++++++------ src/routes/+page.svelte | 20 ++++++++++++++------ 2 files changed, 20 insertions(+), 12 deletions(-) diff --git a/src/lib/index.ts b/src/lib/index.ts index 1485e33..f24f6e5 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -180,7 +180,7 @@ export default { title: "satr14's site", quote: "sometimes you just gotta implement it yourself", name: "satr14", - roles: ["Web Developer", "Sysadmin", "Hobbyist", "Student", "Linux Enthusiast"], + roles: ["Web Developer", "Sysadmin", "Hobbyist", "Student"], description: "I'm Satria, Im a self-taught hobbyist web developer and homelaber sysadmin from Indonesia. I've been programming since 2021 and I love spending my free time working on personal projects and experimenting with new technologies.", skills: ["HTML", "CSS", "JavaScript", "Tailwind", "Svelte", "SvelteKit", "TypeScript", "NodeJS", "Express", "PocketBase", "Python", "Linux", "Nginx", "Docker", "Git", "Bash", "Proxmox", "Nix"], birthday: [12,6], @@ -211,10 +211,10 @@ export default { }, }, socials: { - GitHub: "https://github.com/SX-9", - Discord: "https://discord.com/users/882595027132493864", - Reddit: "https://reddit.com/u/Frequent_Outside_741", - Steam: "https://steamcommunity.com/id/satr14", - Email: "mailto:admin@satr14.my.id", + protonmail: "mailto:admin@satr14.my.id", + github: "https://github.com/SX-9", + discord: "https://discord.com/users/882595027132493864", + reddit: "https://reddit.com/u/Frequent_Outside_741", + steam: "https://steamcommunity.com/id/satr14", }, } \ No newline at end of file diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index b267b27..8ba845d 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -53,7 +53,8 @@ ? {:else} -

+

+ "{data.quote}"
Scroll to continue.

@@ -61,7 +62,7 @@ -
+
{#each Object.entries(data.socials) as [name, url]} - {name} + + {name} + {/each}
@@ -81,7 +84,12 @@
-

{data.subtitle}

+

+ {#each data.roles as role, i} + {i ? " // " : ""} + {role} + {/each} +

{data.description}

It's {time} in {data.timezone}. @@ -99,7 +107,7 @@

- +
\ No newline at end of file