From deff396cdcdf9742dc90c413e00aa11dabf9a5cb Mon Sep 17 00:00:00 2001 From: pancakes Date: Wed, 26 Mar 2025 17:51:54 +1000 Subject: [PATCH] Add projects section to home page --- src/data/projects.json | 17 +++++++++++++++++ src/routes/+page.svelte | 18 ++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 src/data/projects.json diff --git a/src/data/projects.json b/src/data/projects.json new file mode 100644 index 0000000..dccbb1d --- /dev/null +++ b/src/data/projects.json @@ -0,0 +1,17 @@ +[ + { + "href": "https://git.meow.company/pancakes/fedifeeds", + "name": "fedifeeds", + "description": "RSS feeds to Mastodon API. Supports multiple feeds per account, Markdown, and automatic threading (split into multiple notes to fit character limit)." + }, + { + "href": "https://shrimp.meow.company/@iceshrimp_updates", + "name": "Iceshrimp Updates Bot", + "description": "This bot automatically checks for Iceshrimp-js and Iceshrimp.NET releases and posts them. Based on fedifeeds." + }, + { + "href": "https://shrimp.meow.company/@scp_pages", + "name": "SCP Wiki Pages Bot", + "description": "Posts random pages from the SCP Foundation wiki on the Fediverse." + } +] \ No newline at end of file diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index a2f8d34..c549578 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -3,6 +3,7 @@ import { getPages } from "$lib/pages"; import contributions from "../data/contributions.json" import links from "../data/links.json"; + import projects from "../data/projects.json"; const pages = getPages(); @@ -74,6 +75,23 @@ {/each} +

Projects

+ +

Projects made by me

+ + +

Contributions

Projects not made by me that I have contributed to