2022-08-07 21:25:41 -04:00
|
|
|
<template>
|
2022-08-09 19:13:22 -04:00
|
|
|
<div
|
|
|
|
class="container prose dark:prose-invert w-full flex flex-col items-center mt-9"
|
|
|
|
>
|
|
|
|
<h1 class="m-0">Services</h1>
|
|
|
|
<p class="prose dark:prose-invert">
|
|
|
|
This site is statically generated using
|
|
|
|
<a href="https://v3.nuxtjs.org">Nuxt.js</a> with the help of templates and
|
|
|
|
Markdown — because really, writing HTML by hand is tedious and I don't
|
2023-04-18 19:55:55 -04:00
|
|
|
know why I ever tried — and its
|
|
|
|
<a href="https://github.com/potatoeggy/public">source is available here</a
|
|
|
|
>.
|
2022-08-09 19:13:22 -04:00
|
|
|
</p>
|
|
|
|
<!-- i could make this a list but god i'm so tired with nuxt -->
|
|
|
|
<div class="flex justify-around flex-wrap gap-8 items-center">
|
2023-04-18 15:05:11 -04:00
|
|
|
<ServiceCard name="Gitea" href="https://git.eggworld.me" img="gitea.svg">
|
2022-08-09 19:13:22 -04:00
|
|
|
Self-hosted GitHub
|
|
|
|
</ServiceCard>
|
|
|
|
<ServiceCard
|
|
|
|
name="Eifueo"
|
2022-11-01 00:07:14 -04:00
|
|
|
href="https://eifueo.eggworld.me"
|
2022-08-09 22:23:24 -04:00
|
|
|
img="eifueo.svg"
|
2022-08-09 19:13:22 -04:00
|
|
|
>
|
|
|
|
Note collection
|
|
|
|
</ServiceCard>
|
|
|
|
<ServiceCard
|
|
|
|
name="Primoprod"
|
2022-11-01 00:07:14 -04:00
|
|
|
href="https://primoprod.eggworld.me"
|
2022-08-12 17:58:16 -04:00
|
|
|
img="primogem.webp"
|
2022-08-09 19:13:22 -04:00
|
|
|
>
|
|
|
|
Wish simulator
|
|
|
|
</ServiceCard>
|
|
|
|
<ServiceCard
|
|
|
|
name="Calibre"
|
2022-11-01 00:07:14 -04:00
|
|
|
href="https://calibre.eggworld.me"
|
2022-08-12 17:58:16 -04:00
|
|
|
img="calibre-web.webp"
|
2022-08-09 19:13:22 -04:00
|
|
|
>
|
|
|
|
Kobo Cloud
|
|
|
|
</ServiceCard>
|
|
|
|
<ServiceCard
|
|
|
|
name="Jellyfin"
|
2022-11-01 00:07:14 -04:00
|
|
|
href="https://jellyfin.eggworld.me"
|
2023-04-18 15:05:11 -04:00
|
|
|
img="jellyfin.svg"
|
2022-08-09 19:13:22 -04:00
|
|
|
>
|
|
|
|
FOSS media server
|
|
|
|
</ServiceCard>
|
|
|
|
<ServiceCard
|
|
|
|
name="Minecraft"
|
2022-11-01 00:07:14 -04:00
|
|
|
href="minecraft.eggworld.me"
|
2023-04-18 15:05:11 -04:00
|
|
|
img="minecraft.svg"
|
2022-12-19 15:41:40 -05:00
|
|
|
unclickable
|
|
|
|
broken
|
2022-08-09 19:13:22 -04:00
|
|
|
>
|
|
|
|
Whitelisted
|
|
|
|
</ServiceCard>
|
|
|
|
</div>
|
2022-08-07 21:25:41 -04:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-08-09 19:13:22 -04:00
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.container {
|
|
|
|
max-width: unset;
|
|
|
|
}
|
|
|
|
</style>
|