diff --git a/assets/images/services/calibre-web.png b/assets/images/services/calibre-web.png new file mode 100644 index 0000000..24b2ad1 Binary files /dev/null and b/assets/images/services/calibre-web.png differ diff --git a/assets/images/services/eifueo.svg b/assets/images/services/eifueo.svg new file mode 100644 index 0000000..4994952 --- /dev/null +++ b/assets/images/services/eifueo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/images/services/gitea.png b/assets/images/services/gitea.png new file mode 100644 index 0000000..5dacd77 Binary files /dev/null and b/assets/images/services/gitea.png differ diff --git a/assets/images/services/jellyfin.png b/assets/images/services/jellyfin.png new file mode 100644 index 0000000..16e6c2f Binary files /dev/null and b/assets/images/services/jellyfin.png differ diff --git a/assets/images/services/minecraft.png b/assets/images/services/minecraft.png new file mode 100644 index 0000000..8ab1445 Binary files /dev/null and b/assets/images/services/minecraft.png differ diff --git a/assets/images/services/plex.png b/assets/images/services/plex.png new file mode 100644 index 0000000..e486ebf Binary files /dev/null and b/assets/images/services/plex.png differ diff --git a/assets/images/services/primogem.png b/assets/images/services/primogem.png new file mode 100644 index 0000000..51c2918 Binary files /dev/null and b/assets/images/services/primogem.png differ diff --git a/components/ButtonToTop.vue b/components/ButtonToTop.vue new file mode 100644 index 0000000..d7d970d --- /dev/null +++ b/components/ButtonToTop.vue @@ -0,0 +1,33 @@ + + + diff --git a/components/ProjectCard.vue b/components/ProjectCard.vue new file mode 100644 index 0000000..25e7fd0 --- /dev/null +++ b/components/ProjectCard.vue @@ -0,0 +1,54 @@ + + + + + diff --git a/components/ServiceCard.vue b/components/ServiceCard.vue new file mode 100644 index 0000000..3816620 --- /dev/null +++ b/components/ServiceCard.vue @@ -0,0 +1,55 @@ + + + + + diff --git a/components/index/about.vue b/components/index/about.vue index 33564d5..ef71c86 100644 --- a/components/index/about.vue +++ b/components/index/about.vue @@ -1,6 +1,76 @@ + + + + diff --git a/components/index/services.vue b/components/index/services.vue index cc010c5..78d74df 100644 --- a/components/index/services.vue +++ b/components/index/services.vue @@ -1,12 +1,77 @@ + + + + diff --git a/data/navItems.ts b/data/navItems.ts index 180f6cb..a1c7e38 100644 --- a/data/navItems.ts +++ b/data/navItems.ts @@ -1,5 +1,5 @@ export const navItems = [ - { href: "/about", title: "About" }, + { href: "/#about", title: "About" }, { href: "/blog", title: "Blog" }, { href: "/stories", title: "Stories" }, ]; diff --git a/data/projects.ts b/data/projects.ts index 5f4aa34..6503ce8 100644 --- a/data/projects.ts +++ b/data/projects.ts @@ -1,9 +1,30 @@ -export const projects: Record = { - 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; diff --git a/layouts/default.vue b/layouts/default.vue index 51e4788..b50b00f 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -25,6 +25,7 @@ useHead({ title: "Eggworld" });

+