2023-07-18 20:14:11 +02:00
|
|
|
---
|
|
|
|
title: Neko
|
2023-07-19 17:26:27 +02:00
|
|
|
description: LongDesc
|
|
|
|
|
2023-07-19 01:19:49 +02:00
|
|
|
layout: home
|
|
|
|
|
|
|
|
hero:
|
|
|
|
name: Neko
|
|
|
|
text: For MangaDex
|
2023-07-19 17:26:27 +02:00
|
|
|
tagline: LongDesc
|
|
|
|
image: /forks/forks_logo-neko.png
|
2023-07-19 01:19:49 +02:00
|
|
|
actions:
|
|
|
|
- theme: brand
|
|
|
|
text: Download
|
2023-07-19 17:26:27 +02:00
|
|
|
link: https://github.com/CarlosEsco/Neko/releases/latest
|
2023-07-19 01:19:49 +02:00
|
|
|
- theme: alt
|
|
|
|
text: GitHub
|
2023-07-19 17:26:27 +02:00
|
|
|
link: https://github.com/CarlosEsco/Neko
|
2023-07-19 01:19:49 +02:00
|
|
|
|
|
|
|
features:
|
|
|
|
- title: Feature 1
|
|
|
|
details: Describe Feature here.
|
|
|
|
icon: <img src="https://mangadex.org/img/brand/mangadex-logo.svg">
|
|
|
|
- title: Feature 2
|
|
|
|
details: Describe Feature here.
|
|
|
|
icon: <img src="https://mangadex.org/img/brand/mangadex-logo.svg">
|
|
|
|
- title: Feature 3
|
|
|
|
details: Describe Feature here.
|
|
|
|
icon: <img src="https://mangadex.org/img/brand/mangadex-logo.svg">
|
2023-07-19 17:26:27 +02:00
|
|
|
|
|
|
|
head:
|
|
|
|
- - meta
|
|
|
|
- property: og:image
|
|
|
|
content: /forks/forks_logo-neko.png
|
|
|
|
- - meta
|
|
|
|
- name: theme-color
|
|
|
|
content: "#FD6684"
|
|
|
|
- - meta
|
|
|
|
- name: msapplication-TileColor
|
|
|
|
content: "#FD6684"
|
2023-07-18 20:14:11 +02:00
|
|
|
---
|
2023-07-18 02:00:06 +02:00
|
|
|
|
2023-07-19 17:26:27 +02:00
|
|
|
<br><VPTeamMembers size="small" :members="members" />
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { VPTeamMembers } from "vitepress/theme"
|
|
|
|
|
|
|
|
const members = [
|
|
|
|
{
|
|
|
|
avatar: "https://www.github.com/CarlosEsco.png",
|
|
|
|
name: "CarlosEsco",
|
|
|
|
title: "Creator",
|
|
|
|
links: [
|
|
|
|
{ icon: "github", link: "https://github.com/CarlosEsco" }
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
avatar: "https://www.github.com/Jays2Kings.png",
|
|
|
|
name: "Jays2Kings",
|
|
|
|
title: "Fork base",
|
|
|
|
links: [
|
|
|
|
{ icon: "github", link: "https://github.com/Jays2Kings" }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
</script>
|
|
|
|
|
2023-07-19 01:19:49 +02:00
|
|
|
<style>
|
|
|
|
@import "../.vitepress/theme/forks/neko.css"
|
|
|
|
</style>
|