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 made by me
+ +{project.description}
+Projects not made by me that I have contributed to