aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2025-09-23 15:41:52 +0200
committerPolesznyák Márk <contact@pml68.dev>2025-09-23 15:41:52 +0200
commitecfa9dfa8031badaba9d5105ffd840b56341a77f (patch)
tree3431c6ab90d02398aad6f07ae6cbc583b22e79b1
parentfeat: add sourcehut to socials (diff)
downloadpml68.dev-ecfa9dfa8031badaba9d5105ffd840b56341a77f.tar.gz
feat: update relevant projects
-rw-r--r--src/lib/projects.json30
-rw-r--r--src/routes/projects/+page.svelte6
2 files changed, 15 insertions, 21 deletions
diff --git a/src/lib/projects.json b/src/lib/projects.json
index 45ec76a..297d9d0 100644
--- a/src/lib/projects.json
+++ b/src/lib/projects.json
@@ -1,28 +1,22 @@
{
"projects": [
{
- "iconLink": "https://raw.githubusercontent.com/Olah-Barbershop/website/master/src/lib/assets/icon.png",
- "link": "https://github.com/Olah-Barbershop/website/",
- "title": "Oláh Barbershop",
- "description": "The Oláh Barbershop website, built with SvelteKit"
- },
- {
- "iconLink": "https://raw.githubusercontent.com/Olah-Barbershop/website/master/src/lib/assets/icon.png",
- "link": "https://github.com/Olah-Barbershop/API",
- "title": "Oláh Barbershop - API",
- "description": "The API used for the Oláh Barbershop app and website"
+ "icon": "https://pml68.dev/pml68.png",
+ "link": "https://sr.ht/~pml68/pml68.dev",
+ "title": "pml68",
+ "description": "My personal website — the one you're currently viewing"
},
{
- "iconLink": "https://raw.githubusercontent.com/Olah-Barbershop/website/master/src/lib/assets/icon.png",
- "link": "https://github.com/Olah-Barbershop/app/",
- "title": "Oláh Barbershop - App",
- "description": "The Oláh Barbershop app for Android (WIP)"
+ "icon": "https://iced.rs/logo.svg",
+ "link": "https://sr.ht/~pml68/iced-builder",
+ "title": "iced Builder",
+ "description": "UI builder for iced, built with iced. (WIP)"
},
{
- "iconLink": "https://raw.githubusercontent.com/pml68/website/master/static/pml68.png",
- "link": "https://github.com/pml68/website/",
- "title": "pml68",
- "description": "My personal website - this one -, built with SvelteKit"
+ "icon": "https://avatars.githubusercontent.com/u/209838582?s=200&v=4",
+ "link": "https://github.com/foghorn-rs/foghorn",
+ "title": "Foghorn",
+ "description": "Signal Messenger client written in Rust and Iced"
}
]
}
diff --git a/src/routes/projects/+page.svelte b/src/routes/projects/+page.svelte
index 8b64856..d19af6c 100644
--- a/src/routes/projects/+page.svelte
+++ b/src/routes/projects/+page.svelte
@@ -5,7 +5,7 @@
import { projects } from '$lib/projects.json'
type Project = {
- iconLink: string,
+ icon: string,
link: string,
title: string,
description: string
@@ -24,10 +24,10 @@
</div>
</div>
<div class="project-container">
- {#each projectsList as {iconLink, link, title, description}}
+ {#each projectsList as {icon, link, title, description}}
<a href={link} target="_blank">
<div class="project">
- <img src={iconLink} alt={title + ' icon'} class="project-icon">
+ <img src={icon} alt={title + ' icon'} class="project-icon">
<div class="content">
<h3>{title}</h3>
<p>{description}</p>