content: add detail to nano tag

This commit is contained in:
eggy
2024-04-04 14:48:35 -04:00
parent e05b8ccd81
commit 62e1d7ef22
3 changed files with 62 additions and 86 deletions

View File

@@ -18,7 +18,7 @@ export interface Project {
longDescription?: string;
langs: Language[];
license?: "AGPL-3.0" | "GPL-3.0" | "MIT" | "LGPL-3.0";
type: "full" | "server" | "client" | "embedded";
type: "web" | "tool" | "embedded" | "service";
}
export const projects: Project[] = [
@@ -31,7 +31,7 @@ export const projects: Project[] = [
langs: ["python"],
license: "AGPL-3.0",
img: "mandown.webp",
type: "client",
type: "tool",
},
{
name: "Noveldown",
@@ -41,7 +41,7 @@ export const projects: Project[] = [
description:
"A webnovel downloader and EPUB converter for my Kobo, with lots of metadata!",
longDescription: "Heavily borrows Mandown's design.",
type: "client",
type: "tool",
},
{
name: "Jeopardy",
@@ -51,7 +51,7 @@ export const projects: Project[] = [
license: "AGPL-3.0",
description: "Kahoot-inspired Jeopardy! game, including Final Jeopardy!",
longDescription: "Created for Bayview's Computer Club.",
type: "full",
type: "web",
},
{
name: "Primoprod",
@@ -62,7 +62,7 @@ export const projects: Project[] = [
description:
"A game simulator to increase productivity with quests and gambling.",
longDescription: "My first project with a JS framework!",
type: "client",
type: "web",
},
{
name: "PillowⓇ",
@@ -82,38 +82,7 @@ export const projects: Project[] = [
description:
"A Discord music bot with synchronised lyrics, originally a sleep tracking bot to encourage sleeping.",
img: "napbot.webp",
type: "server",
},
{
name: "Resketch",
href: "https://github.com/anyuan-chen/resketch",
langs: ["typescript", "react"],
img: "resketch.webp",
description:
'A "reverse-Pictionary" where you compete to have an AI recognise your drawings.',
longDescription: "Written for YRHacks 2022.",
type: "full",
},
{
name: "Perdiem",
href: "https://github.com/anyuan-chen/perdiem",
langs: ["javascript", "react"],
license: "AGPL-3.0",
img: "perdiem.webp",
description:
"A pretty budgeting app where I learned too much about server-side rendering.",
longDescription: "Written for StormHacks 2022.",
type: "client",
},
{
name: "RecipeReady",
href: "https://github.com/christopherlam888/recipe-ready-frontend",
langs: ["python", "android", "flutter"],
img: "recipeready.webp",
description:
"App to automagically plan meals and prepare a grocery list so you don't have to.",
longDescription: "Written for Hack the North 2021.",
type: "full",
type: "service",
},
{
name: "AutoFicFare",
@@ -122,7 +91,7 @@ export const projects: Project[] = [
license: "GPL-3.0",
description:
"Automatically update fanfiction in a Calibre database to instantly update them on your Kobo.",
type: "client",
type: "tool",
},
];
@@ -132,14 +101,28 @@ const unreleasedProjects: Project[] = [
href: "https://github.com/potatoeggy/aleister",
langs: ["rust"],
license: "AGPL-3.0",
type: "server",
type: "service",
},
{
name: "Aoto",
href: "https://github.com/potatoeggy/aoto",
langs: ["golang", "typescript", "react"],
license: "AGPL-3.0",
type: "full",
type: "web",
},
{
name: "Kobink",
href: "https://github.com/potatoeggy/kobink",
langs: ["rust"],
license: "AGPL-3.0",
type: "service",
},
{
name: "GBARR",
href: "https://github.com/potatoeggy/gbarr",
langs: ["rust"],
license: "GPL-3.0",
type: "embedded",
},
];

View File

@@ -45,6 +45,10 @@ export const tagInfo: Record<string, TagData> = {
description:
"A large, loving family of birds who have found in each other a kindred soul for eternal suffering.",
},
birdseye: {
name: "Bird's-Eye View",
description: "What's the world like to a pair of human-watching bluebirds?",
},
uoft: {
name: "University of Teyvat",
description: "A <em>Genshin Impact</em> university AU.",
@@ -61,6 +65,6 @@ export const tagInfo: Record<string, TagData> = {
featured: {
name: "Featured",
description: "Works that are less rambly and more actually good!",
}
},
};
export default tagInfo;