feat: add back to top, services, about

This commit is contained in:
2022-08-09 19:13:22 -04:00
parent 3c7d81fd36
commit 58131e5a3e
15 changed files with 327 additions and 20 deletions

View File

@@ -1,5 +1,5 @@
export const navItems = [
{ href: "/about", title: "About" },
{ href: "/#about", title: "About" },
{ href: "/blog", title: "Blog" },
{ href: "/stories", title: "Stories" },
];

View File

@@ -1,9 +1,30 @@
export const projects: Record<string, string> = {
public: "",
primoprod: "",
mandown: "",
noveldown: "",
eifueo: "",
};
export const projects = [
{
name: "public",
href: "https://github.com/potatoeggy/public",
description: "This website!",
},
{
name: "mandown",
href: "https://github.com/potatoeggy/mandown",
description: "I couldn't find one so I made one",
},
{ name: "noveldown", href: "https://github.com/potatoeggy/noveldown" },
{ name: "YTMusicDL", href: "https://github.com/potatoeggy/YTMusicDL" },
{ name: "jeopardy", href: "https://github.com/potatoeggy/jeopardy" },
{ name: "Eifueo", href: "https://github.com/potatoeggy/eifueo" },
{ name: "Napbot", href: "https://github.com/potatoeggy/napbot" },
{ name: "emufeed", href: "https://github.com/potatoeggy/emufeed" },
{ name: "Resketch", href: "https://github.com/anyuan-chen/resketch" },
{
name: "RecipeReady",
href: "https://github.com/christopherlam888/recipe-ready-frontend",
},
{ name: "Perdiem", href: "https://github.com/anyuan-chen/perdiem" },
{ name: "Flashnote", href: "https://github.com/potatoeggy/flashnote" },
{ name: "Rooster", href: "https://github.com/potatoeggy/rooster" },
{ name: "AutoFicFare", href: "https://github.com/potatoeggy/autoficfare" },
{ name: "public", href: "https://github.com/potatoeggy/public" },
];
export default projects;